X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffatal_errors.php;h=46dcce0fa63a0ce0f30b5a19e2edc3a356055828;hb=d706465407fd500b5c042a435a8007edb788e3f2;hp=57d133bec66e1e887f7e8d41638e312a5d65c3ce;hpb=f74581eca45c393033acfd9d7798b958031bc625;p=mailer.git diff --git a/inc/fatal_errors.php b/inc/fatal_errors.php index 57d133bec6..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 * @@ -33,7 +38,7 @@ // Some security stuff... if (!defined('__SECURITY')) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; + $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php'; require($INC); } @@ -42,10 +47,10 @@ if (getTotalFatalErrors() > 0) { LOAD_TEMPLATE("fatal_header"); // Set unset variable - if (empty($check)) $check = ""; - if (isInstalling()) { + if (empty($check)) $check = ''; + if ((isInstalling()) || (!isInstalled())) { // While we are installing ouput other header than while it is installed... :-) - $OUT = ""; + $OUT = ''; foreach (getFatalArray() as $key => $value) { // Prepare content for the template $content = array( @@ -61,7 +66,7 @@ if (getTotalFatalErrors() > 0) { LOAD_TEMPLATE("install_fatal_table", false, $OUT); } elseif (isInstalled()) { // Display all runtime fatal errors - $OUT = ""; + $OUT = ''; foreach (getFatalArray() as $key => $value) { // Prepare content for the template $content = array( @@ -77,7 +82,7 @@ if (getTotalFatalErrors() > 0) { LOAD_TEMPLATE("runtime_fatal_table", false, $OUT); // Abort here - exit; + shutdown(); } // Message to regular users (non-admin)