]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Make unit tests work again by forcing a 'global' on $_have_a_config...
authorBrion Vibber <brion@pobox.com>
Sun, 1 Nov 2009 18:30:51 +0000 (13:30 -0500)
committerBrion Vibber <brion@pobox.com>
Mon, 2 Nov 2009 14:14:08 +0000 (06:14 -0800)
Fix a typo in the error message when no config file found.

lib/common.php

index 2c2f6869eefc3d26bcaee413a7d1405a8055b591..68bdbf22934bc596b612a08386ad8903e7c2b310 100644 (file)
@@ -169,6 +169,7 @@ if (isset($conffile)) {
     $_config_files[] = INSTALLDIR.'/config.php';
 }
 
+global $_have_a_config;
 $_have_a_config = false;
 
 foreach ($_config_files as $_config_file) {
@@ -187,7 +188,7 @@ 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>'. _('No configuration 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>';