From 2076a85f673601b79fe67a0bc2cc33f25faae54d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Wed, 2 Dec 2009 20:10:53 +0000 Subject: [PATCH] Global fix/add/update: - 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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index f2e1c4c..979aa45 100644 --- 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)) { -- 2.30.2