From: Roland Häder Date: Wed, 9 Dec 2009 20:50:58 +0000 (+0000) Subject: Generic index.php is now masking backtrace data X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=0d0406c457f617fe44d9be114cbb3cd685632e58;hp=ffc2df0e3a4acd3d02235676dee2fb618ade8a91 Generic index.php is now masking backtrace data --- diff --git a/index.php b/index.php index 979aa45f3d..6f4585b3dc 100644 --- a/index.php +++ b/index.php @@ -111,7 +111,12 @@ final class ApplicationEntryPoint { if (!isset($trace['file'])) $trace['file'] = __FILE__; if (!isset($trace['line'])) $trace['line'] = __LINE__; if (!isset($trace['args'])) $trace['args'] = array(); - $backtrace .= "".basename($trace['file']).":".$trace['line'].", ".$trace['function']."(".count($trace['args']).")
"; + $backtrace .= sprintf("%s:%d, %s(%d)
\n", + basename($trace['file']), + $trace['line'], + $trace['function'], + count($trace['args']) + ); } // END - foreach // Init application instance @@ -198,7 +203,6 @@ final class ApplicationEntryPoint { // Include the application selector require($cfg->getConfigEntry('base_path') . 'inc/selector.php'); } // END - main() - } // END - class // Do not remove the following line: