X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffatal_errors.php;h=d139e34ae079b6f899c4ebd3100d855b3e870112;hb=4ba0d29f12dae79ebde25004a1df4155e0faf69c;hp=94c4ea0d9e0b7ee2cf41b54d94b21bff5a87c8dc;hpb=5d0d05a99b39c75b54cd6b02c6093cf71532cd83;p=mailer.git diff --git a/inc/fatal_errors.php b/inc/fatal_errors.php index 94c4ea0d9e..d139e34ae0 100644 --- a/inc/fatal_errors.php +++ b/inc/fatal_errors.php @@ -10,7 +10,12 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Gibt fatale Fehler aus * * -------------------------------------------------------------------- * - * * + * $Revision:: 856 $ * + * $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 * @@ -43,7 +48,7 @@ if (getTotalFatalErrors() > 0) { // 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 (getFatalArray() as $key => $value) { @@ -59,7 +64,7 @@ if (getTotalFatalErrors() > 0) { // Load main template LOAD_TEMPLATE("install_fatal_table", false, $OUT); - } elseif (isBooleanConstantAndTrue('mxchange_installed')) { + } elseif (isInstalled()) { // Display all runtime fatal errors $OUT = ""; foreach (getFatalArray() as $key => $value) { @@ -77,7 +82,7 @@ if (getTotalFatalErrors() > 0) { LOAD_TEMPLATE("runtime_fatal_table", false, $OUT); // Abort here - exit; + shutdown(); } // Message to regular users (non-admin)