X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fload_config.php;h=483a4d270b76a17ef49f250a65ee75345d710fd1;hb=5ab0d021f3e96722af5d96d2b9036430200c06cb;hp=0bb8a7aa3615d0f41c4cfdce9d10e1fcec1c7305;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341;p=mailer.git diff --git a/inc/load_config.php b/inc/load_config.php index 0bb8a7aa36..483a4d270b 100644 --- a/inc/load_config.php +++ b/inc/load_config.php @@ -46,12 +46,12 @@ setConfigEntry('WRITE_FOOTER', 'Y'); setConfigEntry('_DB_TYPE' , 'mysql3'); // Mark configuration as NOT loaded which is the default -$GLOBALS['config_local_loaded'] = false; +$GLOBALS['config_local_loaded'] = FALSE; // Is the local configuration there? if ((isIncludeReadable(getCachePath() . 'config-local.php')) && (isIncludeReadable('inc/config.php'))) { // We are better in installation mode - $GLOBALS['__mailer_installing'] = true; + $GLOBALS['__mailer_installing'] = TRUE; // Define default main_title here setConfigEntry('MAIN_TITLE', 'Your mail-exchange title'); @@ -66,7 +66,7 @@ if ((isIncludeReadable(getCachePath() . 'config-local.php')) && (isIncludeReadab loadIncludeOnce(getCachePath() . 'config-local.php'); // Mark configuration as loaded - $GLOBALS['config_local_loaded'] = true; + $GLOBALS['config_local_loaded'] = TRUE; } elseif (isIncludeReadable('inc/config.php')) { // Out-dated inc/config.php found, falling back to load and "wrap" it updateOldConfigFile();