From: Roland Häder Date: Wed, 11 Mar 2009 00:39:38 +0000 (+0000) Subject: tm removed X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=6df4e99ca91c4a310d7ccce5c496ed84ce66533d tm removed --- diff --git a/index.php b/index.php index 4b68bf5b2d..64aa05f895 100644 --- a/index.php +++ b/index.php @@ -4,7 +4,7 @@ define('DEVELOPER', true); //xdebug_start_trace(); /** * The main class with the entry point to the whole application. This class - * "emulates" Java(tm)'s entry point call. Additionally it covers local + * "emulates" Java's entry point call. Additionally it covers local * variables from outside access to prevent possible attacks on uninitialized * local variables. * @@ -101,6 +101,7 @@ class ApplicationEntryPoint { } // Get and prepare backtrace for output + // @TODO Rewrite this to something "generic" $backtraceArray = debug_backtrace(); $backtrace = ""; foreach ($backtraceArray as $key => $trace) { @@ -123,13 +124,13 @@ class ApplicationEntryPoint { } // END - if // Assign variables - $templateInstance->assignVariable('message', $message); - $templateInstance->assignVariable('code', $code); - $templateInstance->assignVariable('extra', $extraData); - $templateInstance->assignVariable('backtrace', $backtrace); + $templateInstance->assignVariable('message' , $message); + $templateInstance->assignVariable('code' , $code); + $templateInstance->assignVariable('extra' , $extraData); + $templateInstance->assignVariable('backtrace' , $backtrace); $templateInstance->assignVariable('total_includes', ClassLoader::getInstance()->getTotal()); - $templateInstance->assignVariable('total_objects', ObjectFactory::getTotal()); - $templateInstance->assignVariable('title', $lang->getMessage('emergency_exit_title')); + $templateInstance->assignVariable('total_objects' , ObjectFactory::getTotal()); + $templateInstance->assignVariable('title' , $lang->getMessage('emergency_exit_title')); // Load the template $templateInstance->loadCodeTemplate('emergency_exit'); @@ -160,7 +161,7 @@ class ApplicationEntryPoint { * The application's main entry point. This class isolates some local * variables which shall not become visible to outside because of security * concerns. We are doing this here to "emulate" the well-known entry - * point in Java(tm). + * point in Java. * * @return void */