X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffatal_errors.php;h=f551ef47b7591c74e7b59193e56a1fa6505a87ab;hb=8268379f7f0f38f5cd605714ecd5cbfacff0e282;hp=46dcce0fa63a0ce0f30b5a19e2edc3a356055828;hpb=f97a999e0737c0007ae9c3c26dfef49f75a175ac;p=mailer.git diff --git a/inc/fatal_errors.php b/inc/fatal_errors.php index 46dcce0fa6..f551ef47b7 100644 --- a/inc/fatal_errors.php +++ b/inc/fatal_errors.php @@ -1,101 +1,3 @@ 0) { - // Main div container - LOAD_TEMPLATE("fatal_header"); - - // Set unset variable - if (empty($check)) $check = ''; - if ((isInstalling()) || (!isInstalled())) { - // While we are installing ouput other header than while it is installed... :-) - $OUT = ''; - foreach (getFatalArray() 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 (isInstalled()) { - // Display all runtime fatal errors - $OUT = ''; - foreach (getFatalArray() 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 - LOAD_TEMPLATE("runtime_fatal_table", false, $OUT); - - // Abort here - shutdown(); - } - - // Message to regular users (non-admin) - $CORR = getMessage('FATAL_REPORT_ERRORS'); - - // PHP warnings fixed - if ($check == "done") { - if (IS_ADMIN()) $CORR = getMessage('FATAL_CORRECT_ERRORS'); - } // END - if - - // Load footer template - LOAD_TEMPLATE("fatal_footer", false, $CORR); -} - -// +// @DEPRECATED ?>