From: Brion Vibber Date: Sun, 1 Nov 2009 18:30:51 +0000 (-0500) Subject: Make unit tests work again by forcing a 'global' on $_have_a_config... X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8e64723813525f3911e3402f4ccf84d8813ce25a;p=quix0rs-gnu-social.git Make unit tests work again by forcing a 'global' on $_have_a_config... Fix a typo in the error message when no config file found. --- diff --git a/lib/common.php b/lib/common.php index 2c2f6869ee..68bdbf2293 100644 --- a/lib/common.php +++ b/lib/common.php @@ -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 '

'. _('No configuation file found. ') .'

'; + echo '

'. _('No configuration file found. ') .'

'; echo '

'. _('I looked for configuration files in the following places: ') .'
'. implode($_config_files, '
'); echo '

'. _('You may wish to run the installer to fix this.') .'

'; echo ''. _('Go to the installer.') .'';