From: Roland Häder Date: Tue, 22 Sep 2009 17:05:15 +0000 (+0000) Subject: We should not auto-init sub-systems. Instead we should initialize them 'by-hand' X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=cfd562e4d8986b9e08f4a979d9eb2082f6eaaf87 We should not auto-init sub-systems. Instead we should initialize them 'by-hand' --- diff --git a/inc/config-functions.php b/inc/config-functions.php index 531ad18844..d261faecaa 100644 --- a/inc/config-functions.php +++ b/inc/config-functions.php @@ -73,12 +73,6 @@ function setConfigEntry ($configEntry, $value) { $configEntry = smartAddSlashes($configEntry); } - // If config array isn't set, set it - if (!isConfigLoaded()) { - // Init configuration array - initConfig(); - } // END - if - // And set it $GLOBALS['config'][$configEntry] = $value; }