Global fix/add/update:
authorRoland Häder <roland@mxchange.org>
Wed, 2 Dec 2009 20:10:53 +0000 (20:10 +0000)
committerRoland Häder <roland@mxchange.org>
Wed, 2 Dec 2009 20:10:53 +0000 (20:10 +0000)
- index.php updated in all projects from ship-simu
- Missing todo-builder.sh added
- TODOs.txt updated in all projects
- Missing svn:executable added

index.php

index f2e1c4c49508273bec169275150700d1292e9d98..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)) {