]> git.mxchange.org Git - mailer.git/blobdiff - inc/fatal_errors.php
More constant rewrites
[mailer.git] / inc / fatal_errors.php
index 98f8a8c6083070ab8a3b7896114f64c222bafa78..57d133bec66e1e887f7e8d41638e312a5d65c3ce 100644 (file)
@@ -43,7 +43,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 +59,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) {
@@ -74,7 +74,10 @@ if (getTotalFatalErrors() > 0) {
                }
 
                // Load main template
-               mxchange_die(LOAD_TEMPLATE("runtime_fatal_table", true, $OUT));
+               LOAD_TEMPLATE("runtime_fatal_table", false, $OUT);
+
+               // Abort here
+               exit;
        }
 
        // Message to regular users (non-admin)