- index.php updated in all projects from ship-simu
- Missing todo-builder.sh added
- TODOs.txt updated in all projects
- Missing svn:executable added
*/
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)) {