X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=inc%2Ffatal_errors.php;h=3ff6ec562ebf971879cc27dba211697d83f89d38;hb=525510c6f6ee4798619dba6236c6b6d85263ac22;hp=3d4a97a7fc8e03ce4be84eda8e61fef787669f59;hpb=7b0f17cd637e388049d2167811e4332cec1e979b;p=mailer.git diff --git a/inc/fatal_errors.php b/inc/fatal_errors.php index 3d4a97a7fc..3ff6ec562e 100644 --- a/inc/fatal_errors.php +++ b/inc/fatal_errors.php @@ -43,8 +43,11 @@ if (!defined('__SECURITY')) { } 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 = ''; @@ -59,11 +62,11 @@ 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 = ''; @@ -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(); @@ -94,7 +97,7 @@ if (getTotalFatalErrors() > 0) { } // END - if // Load footer template - LOAD_TEMPLATE("fatal_footer", false, $CORR); + LOAD_TEMPLATE('fatal_footer', false, $CORR); } //