From: Roland Häder Date: Sun, 30 Aug 2009 22:20:26 +0000 (+0000) Subject: Instance variable rewritten X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;ds=sidebyside;h=e5f1d50ab52dfef2a425c74bc3dc7953ac686534;hp=c2c103ba61ec1462e2ef69a3f144ecfe6aeb4ebd;p=hub.git Instance variable rewritten --- diff --git a/index.php b/index.php index f717dd4fa..d534a4796 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');