Global fix/add/update:
[mailer.git] / index.php
index d534a4796c15b1caa2032c8049de745f0758ff6a..979aa45f3d9642dd186e00ad7557abc7a78d540f 100644 (file)
--- a/index.php
+++ b/index.php
@@ -62,13 +62,13 @@ final class ApplicationEntryPoint {
         */
        public static function app_die ($message = '', $code = false, $extraData = '', $silentMode = false) {
                // Is this method already called?
-               if (defined('EMERGENCY_EXIT_CALLED')) {
+               if (isset($GLOBALS['app_die_called'])) {
                        // Then output the text directly
                        die($message);
                } // END - if
 
                // This method shall not be called twice
-               define('EMERGENCY_EXIT_CALLED', true);
+               $GLOBALS['app_die_called'] = true;
 
                // Is a message set?
                if (empty($message)) {
@@ -86,7 +86,7 @@ final class ApplicationEntryPoint {
                } // END - if
 
                // Get some instances
-               $tpl = FrameworkConfiguration::getInstance()->getConfigEntry('template_class');
+               $tpl = FrameworkConfiguration::getInstance()->getConfigEntry('web_template_class');
                $languageInstance = LanguageSystem::getInstance();
 
                // Get response instance