X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fconfig-functions.php;h=b58db19ee5185156463c8ce4a631a889d5d17520;hb=5f243a44fd58ab847198294f23b022fcefd6e334;hp=656501db5dfb622dc588bc129619bb5e0c825919;hpb=de5910b8e5deb9285a7ac57c26ebd894f4e1afbf;p=mailer.git diff --git a/inc/config-functions.php b/inc/config-functions.php index 656501db5d..b58db19ee5 100644 --- a/inc/config-functions.php +++ b/inc/config-functions.php @@ -18,6 +18,7 @@ * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * + * Copyright (c) 2009, 2010 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -46,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() @@ -78,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 @@ -297,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]);