X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig-functions.php;h=55d530bc891be35ce9e0897b023dc88465c4e0ac;hb=541036af17736c5b61b2b4b54fe1a75b57b94d40;hp=918ce0fb39904e63c5c3edcfd4c974e3569f4cb5;hpb=cb0ddf186efd5b223638476e74cffb2d3c415407;p=mailer.git diff --git a/inc/config-functions.php b/inc/config-functions.php index 918ce0fb39..55d530bc89 100644 --- a/inc/config-functions.php +++ b/inc/config-functions.php @@ -77,12 +77,13 @@ function getConfig ($configEntry) { $value = null; // Is the entry there? - if (!isset($GLOBALS['config'][$configEntry])) { + if (!isConfigEntrySet($configEntry)) { // Raise an error of missing entries debug_report_bug(__FUNCTION__, __LINE__, sprintf("Configuration entry %s is missing.", $configEntry)); } // END - if // Return it + //* DEBUG: */ error_log(__FUNCTION__.'['.__LINE__.':] '.$configEntry.'='.$GLOBALS['config'][$configEntry]); return $GLOBALS['config'][$configEntry]; } @@ -182,10 +183,10 @@ function updateOldConfigFile () { ); // Copy template to new file destionation - copyFileVerified(getConfig('PATH') . 'inc/config-local.php.dist', getConfig('CACHE_PATH') . 'config-local.php', 0644); + copyFileVerified(getPath() . 'inc/config-local.php.dist', getCachePath() . 'config-local.php', 0644); // First of all, load the old one! - $oldConfig = explode("\n", readFromFile(getConfig('PATH') . 'inc/config.php')); + $oldConfig = explode("\n", readFromFile(getPath() . 'inc/config.php')); // Now, analyze every entry $done = array(); @@ -224,7 +225,7 @@ function updateOldConfigFile () { /// ... and write it to the new config //* DEBUG: */ debugOutput('function=' . $function . ',new=' . $new . ',comment=' . $comment); - changeDataInFile(getConfig('CACHE_PATH') . 'config-local.php', $comment, $function . "('" . $oldNew . "', \"", '");', constant($new), 0); + changeDataInFile(getCachePath() . 'config-local.php', $comment, $function . "('" . $oldNew . "', \"", '");', constant($new), 0); //* DEBUG: */ debugOutput('CHANGED!'); // Mark it as done @@ -263,12 +264,12 @@ function updateOldConfigFile () { $key = substr(trim($parts[0]), 1, -1); $value = substr(trim($parts[1]), 1, -2); // We can now save the right part in new config file - changeDataInFile(getConfig('CACHE_PATH') . 'config-local.php', $comments[$key], " '".$key."' => \"", '",', $value, 0); + changeDataInFile(getCachePath() . 'config-local.php', $comments[$key], " '".$key."' => \"", '",', $value, 0); } } // END - foreach // Finally remove old config file - removeFile(getConfig('PATH') . 'inc/config.php'); + removeFile(getPath() . 'inc/config.php'); // Redirect to same URL to reload our new config redirectToUrl(getRequestUri()); @@ -277,7 +278,7 @@ function updateOldConfigFile () { // Update config entries function updateConfiguration ($entries, $values, $updateMode='', $config = '0') { // Do not update config in CSS mode - if ((getOutputMode() == 1) || (getOutputMode() == -1) || (isInstallationPhase())) { + if ((getScriptOutputMode() == 1) || (getScriptOutputMode() == -1) || (isInstallationPhase())) { return; } // END - if