X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=index.php;h=979aa45f3d9642dd186e00ad7557abc7a78d540f;hp=f2e1c4c49508273bec169275150700d1292e9d98;hb=97cf8ba03ad3f107f9d0a296fa715c83ee784955;hpb=b4e3ec24c9d8aacbb80daa1e46ba7f3110447d43 diff --git a/index.php b/index.php index f2e1c4c495..979aa45f3d 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)) {