X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffatal_errors.php;h=f551ef47b7591c74e7b59193e56a1fa6505a87ab;hb=b3dc1ddc29f83eb7541b48dfda90303c3fc181c2;hp=a3a476ca543d5afcbe8069890861785aac2094c4;hpb=3daede4c904e23905c3e48dd6749019deca0a0e0;p=mailer.git diff --git a/inc/fatal_errors.php b/inc/fatal_errors.php index a3a476ca54..f551ef47b7 100644 --- a/inc/fatal_errors.php +++ b/inc/fatal_errors.php @@ -1,93 +1,3 @@ 0) { - // Main div container - LOAD_TEMPLATE("fatal_header"); - - // Set unset variable - if (empty($check)) $check = ""; - if (isBooleanConstantAndTrue('mxchange_installing')) { - // While we are installing ouput other header than while it is installed... :-) - $OUT = ""; - foreach ($FATAL as $key => $value) { - // Prepare content for the template - $content = array( - 'key' => ($key + 1), - 'value' => $value - ); - - // Load row template - $OUT .= LOAD_TEMPLATE("install_fatal_row", true, $content); - } - - // Load main template - LOAD_TEMPLATE("install_fatal_table", false, $OUT); - } elseif (isBooleanConstantAndTrue('mxchange_installed')) { - // Display all runtime fatal errors - $OUT = ""; - foreach ($FATAL as $key => $value) { - // Prepare content for the template - $content = array( - 'key' => ($key + 1), - 'value' => $value - ); - - // Load row template - $OUT .= LOAD_TEMPLATE("runtime_fatal_row", true, $content); - } - - // Load main template - mxchange_die(LOAD_TEMPLATE("runtime_fatal_table", true, $OUT)); - } - - // Message to regular users (non-admin) - $CORR = FATAL_REPORT_ERRORS; - - // PHP warnings fixed - if ($check == "done") { - if (IS_ADMIN()) $CORR = FATAL_CORRECT_ERRORS; - } // END - if - - // Load footer template - LOAD_TEMPLATE("fatal_footer", false, $CORR); -} - -// +// @DEPRECATED ?>