X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig-functions.php;h=b58db19ee5185156463c8ce4a631a889d5d17520;hb=5f243a44fd58ab847198294f23b022fcefd6e334;hp=bc3eea007071a28706792fa977eac94d557114af;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa;p=mailer.git diff --git a/inc/config-functions.php b/inc/config-functions.php index bc3eea0070..b58db19ee5 100644 --- a/inc/config-functions.php +++ b/inc/config-functions.php @@ -47,7 +47,7 @@ function initConfig () { // Init not if already found if (isConfigurationLoaded()) { // Already initialized - debug_report_bug(sprintf("[%s:%s] Configuration is already initialized.", __FUNCTION__, __LINE__)); + debug_report_bug(__FUNCTION__, __LINE__, 'Configuration is already initialized.'); } // END - if // Set a minimum of configuration, required to by-pass some error triggers in getConfig() @@ -79,11 +79,7 @@ function getConfig ($configEntry) { // Is the entry there? if (!isset($GLOBALS['config'][$configEntry])) { // Raise an error of missing entries - debug_report_bug(sprintf("[%s:%s] Configuration entry %s is missing.", - __FUNCTION__, - __LINE__, - $configEntry - )); + debug_report_bug(__FUNCTION__, __LINE__, sprintf("Configuration entry %s is missing.", $configEntry)); } // END - if // Return it @@ -298,7 +294,7 @@ function updateConfiguration ($entries, $values, $updateMode='', $config = '0') // Check if string or number but no array if (is_array($values[$idx])) { // Arrays must be fixed... - debug_report_bug('values[' . $idx . '] should not be an array! Content=
'.print_r($values[$idx], true).'
'); + debug_report_bug(__FUNCTION__, __LINE__, 'values[' . $idx . '] should not be an array! Content=
'.print_r($values[$idx], true).'
'); } elseif (($values[$idx] + 0) === $values[$idx]) { // Number detected $all .= sprintf("`%s`=%s,", $entry, (float)$values[$idx]);