X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffatal_errors.php;h=46dcce0fa63a0ce0f30b5a19e2edc3a356055828;hb=d706465407fd500b5c042a435a8007edb788e3f2;hp=edee328c70734d6b98083215650361dce3b530d4;hpb=75ad748a68473ace540251427a74fb781b1145e9;p=mailer.git diff --git a/inc/fatal_errors.php b/inc/fatal_errors.php index edee328c70..46dcce0fa6 100644 --- a/inc/fatal_errors.php +++ b/inc/fatal_errors.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Gibt fatale Fehler aus * * -------------------------------------------------------------------- * - * * + * $Revision:: $ * + * $Date:: $ * + * $Tag:: 0.2.1-FINAL $ * + * $Author:: $ * + * Needs to be in all Files and every File needs "svn propset * + * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * @@ -32,23 +37,21 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) -{ - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; +if (!defined('__SECURITY')) { + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; 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 (mxchange_installing) { + if (empty($check)) $check = ''; + if ((isInstalling()) || (!isInstalled())) { // While we are installing ouput other header than while it is installed... :-) - $OUT = ""; - foreach ($FATAL as $key=>$value) { + $OUT = ''; + foreach (getFatalArray() as $key => $value) { // Prepare content for the template $content = array( 'key' => ($key + 1), @@ -61,10 +64,10 @@ if ((sizeof($FATAL) > 0) || (!empty($FATAL[0]))) // Load main template LOAD_TEMPLATE("install_fatal_table", false, $OUT); - } elseif (mxchange_installed) { + } elseif (isInstalled()) { // Display all runtime fatal errors - $OUT = ""; - foreach ($FATAL as $key=>$value) { + $OUT = ''; + foreach (getFatalArray() as $key => $value) { // Prepare content for the template $content = array( 'key' => ($key + 1), @@ -76,14 +79,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 + shutdown(); } - $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);