Instance variable rewritten
authorRoland Häder <roland@mxchange.org>
Sun, 30 Aug 2009 22:20:37 +0000 (22:20 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 30 Aug 2009 22:20:37 +0000 (22:20 +0000)
index.php

index f717dd4fabf5277770af16eee9cb5ded8b80ae7e..d534a4796c15b1caa2032c8049de745f0758ff6a 100644 (file)
--- a/index.php
+++ b/index.php
@@ -87,13 +87,13 @@ final class ApplicationEntryPoint {
 
                // Get some instances
                $tpl = FrameworkConfiguration::getInstance()->getConfigEntry('template_class');
 
                // 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?
 
                // 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
                        // 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('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');
 
                        // Load the template
                        $templateInstance->loadCodeTemplate('emergency_exit');