]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Merge commit 'mainline/0.9.x' into 0.9.x
authorBrenda Wallace <shiny@cpan.org>
Thu, 29 Oct 2009 21:35:27 +0000 (10:35 +1300)
committerBrenda Wallace <shiny@cpan.org>
Thu, 29 Oct 2009 21:35:27 +0000 (10:35 +1300)
lib/common.php

index e29456ed4e9d2345fbcb3ac76916d4fa0e28edbb..2c2f6869eefc3d26bcaee413a7d1405a8055b591 100644 (file)
@@ -185,7 +185,14 @@ function _have_config()
 }
 
 // XXX: Throw a conniption if database not installed
-
+// XXX: Find a way to use htmlwriter for this instead of handcoded markup
+if (!_have_config()) {
+  echo '<p>'. _('No configuation file found. ') .'</p>';
+  echo '<p>'. _('I looked for configuration files in the following places: ') .'<br/> '. implode($_config_files, '<br/>');
+  echo '<p>'. _('You may wish to run the installer to fix this.') .'</p>';
+  echo '<a href="install.php">'. _('Go to the installer.') .'</a>';
+  exit;
+}
 // Fixup for statusnet.ini
 
 $_db_name = substr($config['db']['database'], strrpos($config['db']['database'], '/') + 1);