From: Roland Häder Date: Sun, 30 Aug 2009 22:20:37 +0000 (+0000) Subject: Instance variable rewritten X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=2b952c84698623aea7b0624f863571da1ac5b0a5 Instance variable rewritten --- diff --git a/index.php b/index.php index f717dd4fab..d534a4796c 100644 --- a/index.php +++ b/index.php @@ -87,13 +87,13 @@ final class ApplicationEntryPoint { // Get some instances $tpl = FrameworkConfiguration::getInstance()->getConfigEntry('template_class'); - $lang = LanguageSystem::getInstance(); + $languageInstance = LanguageSystem::getInstance(); // Get response instance $responseInstance = ApplicationHelper::getInstance()->getResponseInstance(); // Is the template engine loaded? - if ((class_exists($tpl)) && (is_object($lang))) { + if ((class_exists($tpl)) && (is_object($languageInstance))) { // Use the template engine for putting out (nicer look) the message try { // Get the template instance from our object factory @@ -133,7 +133,7 @@ final class ApplicationEntryPoint { $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('title', $languageInstance->getMessage('emergency_exit_title')); // Load the template $templateInstance->loadCodeTemplate('emergency_exit');