X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig-functions.php;h=8f25e9223c51a002747d11f8911c170ceeacf166;hb=aa5b92d172814a2b0767113ea26567cc74f30516;hp=4d873332c9101293ec4f77447df3581c4d396105;hpb=94aee53ff8758776caa6dcd6679d1af0f7e6a916;p=mailer.git diff --git a/inc/config-functions.php b/inc/config-functions.php index 4d873332c9..8f25e9223c 100644 --- a/inc/config-functions.php +++ b/inc/config-functions.php @@ -97,6 +97,7 @@ function setConfigEntry ($configEntry, $value) { // Checks wether the given config entry is set function isConfigEntrySet ($configEntry) { + //* DEBUG: */ print __FUNCTION__.':'.$configEntry.'='.intval(isset($GLOBALS['config'][$configEntry])).'
'; return (isset($GLOBALS['config'][$configEntry])); } @@ -127,7 +128,7 @@ function getConfigArray () { $return = array(); // Is the config set? - if (isset($GLOABLS['config'])) { + if (isset($GLOBALS['config'])) { // Then use it $return = $GLOBALS['config']; } // END - if