X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Ffatal_errors.php;h=57d133bec66e1e887f7e8d41638e312a5d65c3ce;hp=96a7d8539eb39de32922d865aa1654d63bf4feac;hb=4001187f22197f55e5a1f211fc8defcc180f7c32;hpb=963e55ca1ea79e255f235e359cde9f7862191dc5 diff --git a/inc/fatal_errors.php b/inc/fatal_errors.php index 96a7d8539e..57d133bec6 100644 --- a/inc/fatal_errors.php +++ b/inc/fatal_errors.php @@ -37,17 +37,16 @@ if (!defined('__SECURITY')) { require($INC); } -if ((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) -{ +if (getTotalFatalErrors() > 0) { // Main div container LOAD_TEMPLATE("fatal_header"); // Set unset variable if (empty($check)) $check = ""; - if (isBooleanConstantAndTrue('mxchange_installing')) { + if (isInstalling()) { // While we are installing ouput other header than while it is installed... :-) $OUT = ""; - foreach ($FATAL as $key => $value) { + foreach (getFatalArray() as $key => $value) { // Prepare content for the template $content = array( 'key' => ($key + 1), @@ -60,10 +59,10 @@ if ((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) // Load main template LOAD_TEMPLATE("install_fatal_table", false, $OUT); - } elseif (isBooleanConstantAndTrue('mxchange_installed')) { + } elseif (isInstalled()) { // Display all runtime fatal errors $OUT = ""; - foreach ($FATAL as $key => $value) { + foreach (getFatalArray() as $key => $value) { // Prepare content for the template $content = array( 'key' => ($key + 1), @@ -75,14 +74,19 @@ if ((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) } // Load main template - mxchange_die(LOAD_TEMPLATE("runtime_fatal_table", true, $OUT)); + LOAD_TEMPLATE("runtime_fatal_table", false, $OUT); + + // Abort here + exit; } - $CORR = FATAL_REPORT_ERRORS; + + // Message to regular users (non-admin) + $CORR = getMessage('FATAL_REPORT_ERRORS'); // PHP warnings fixed if ($check == "done") { - if (IS_ADMIN()) $CORR = FATAL_CORRECT_ERRORS; - } + if (IS_ADMIN()) $CORR = getMessage('FATAL_CORRECT_ERRORS'); + } // END - if // Load footer template LOAD_TEMPLATE("fatal_footer", false, $CORR);