From e677efdb845a9b2d6763e271a505ab8b4c6c3c46 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 6 Apr 2011 01:08:03 +0000 Subject: [PATCH 1/1] Some code cosmetics applied --- index.php | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/index.php b/index.php index 782525e1a5..3950334e91 100644 --- a/index.php +++ b/index.php @@ -56,7 +56,7 @@ final class ApplicationEntryPoint { * @param $extraData Extra information from exceptions * @param $silentMode Wether not silent mode is turned on * @return void - * @todo This method is old code and needs heavy rewrite + * @todo This method is old code and needs heavy rewrite and should be moved to ApplicationHelper */ public static final function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) { // Is this method already called? @@ -109,9 +109,18 @@ final class ApplicationEntryPoint { $backtraceArray = debug_backtrace(); $backtrace = ''; foreach ($backtraceArray as $key => $trace) { - if (!isset($trace['file'])) $trace['file'] = __FILE__; - if (!isset($trace['line'])) $trace['line'] = __LINE__; - if (!isset($trace['args'])) $trace['args'] = array(); + // Set missing array elements + if (!isset($trace['file'])) { + $trace['file'] = __FILE__; + } // END - if + if (!isset($trace['line'])) { + $trace['line'] = __LINE__; + } // END - if + if (!isset($trace['args'])) { + $trace['args'] = array(); + } // END - if + + // Add the traceback path to the final output $backtrace .= sprintf("%s:%d, %s(%d)
\n", basename($trace['file']), $trace['line'], -- 2.30.2