X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Ffatal_errors.php;h=3ff6ec562ebf971879cc27dba211697d83f89d38;hb=31f72989438afa5abd59305ecb8e6933ca4ceba1;hp=d139e34ae079b6f899c4ebd3100d855b3e870112;hpb=508228c85fba8448d00865b1639cb8cd7a69e457;p=mailer.git diff --git a/inc/fatal_errors.php b/inc/fatal_errors.php index d139e34ae0..3ff6ec562e 100644 --- a/inc/fatal_errors.php +++ b/inc/fatal_errors.php @@ -10,7 +10,7 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Gibt fatale Fehler aus * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * + * $Revision:: $ * * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * @@ -38,19 +38,22 @@ // 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); } if (getTotalFatalErrors() > 0) { + // Load config here + loadIncludeOnce('inc/load_config.php'); + // Main div container - LOAD_TEMPLATE("fatal_header"); + 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( @@ -59,14 +62,14 @@ if (getTotalFatalErrors() > 0) { ); // Load row template - $OUT .= LOAD_TEMPLATE("install_fatal_row", true, $content); + $OUT .= LOAD_TEMPLATE('install_fatal_row', true, $content); } // Load main template - LOAD_TEMPLATE("install_fatal_table", false, $OUT); + 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( @@ -75,11 +78,11 @@ if (getTotalFatalErrors() > 0) { ); // Load row template - $OUT .= LOAD_TEMPLATE("runtime_fatal_row", true, $content); + $OUT .= LOAD_TEMPLATE('runtime_fatal_row', true, $content); } // Load main template - LOAD_TEMPLATE("runtime_fatal_table", false, $OUT); + LOAD_TEMPLATE('runtime_fatal_table', false, $OUT); // Abort here shutdown(); @@ -89,12 +92,12 @@ if (getTotalFatalErrors() > 0) { $CORR = getMessage('FATAL_REPORT_ERRORS'); // PHP warnings fixed - if ($check == "done") { + if ($check == 'done') { if (IS_ADMIN()) $CORR = getMessage('FATAL_CORRECT_ERRORS'); } // END - if // Load footer template - LOAD_TEMPLATE("fatal_footer", false, $CORR); + LOAD_TEMPLATE('fatal_footer', false, $CORR); } //