]> git.mxchange.org Git - mailer.git/blobdiff - inc/fatal_errors.php
A lot double-quotes rewritten to single-quotes, some redirect URLs fixed
[mailer.git] / inc / fatal_errors.php
index ea05cca12233e746fd95ab1003e30c0589a9ae21..46dcce0fa63a0ce0f30b5a19e2edc3a356055828 100644 (file)
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Gibt fatale Fehler aus                           *
  * -------------------------------------------------------------------- *
- * $Revision:: 856                                                    $ *
- * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. Mär 2009)              $ *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
- * $Author:: stelzi                                                   $ *
+ * $Author::                                                          $ *
  * Needs to be in all Files and every File needs "svn propset           *
  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
@@ -38,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);
 }
 
@@ -47,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(
@@ -66,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(
@@ -82,7 +82,7 @@ if (getTotalFatalErrors() > 0) {
                LOAD_TEMPLATE("runtime_fatal_table", false, $OUT);
 
                // Abort here
-               exit;
+               shutdown();
        }
 
        // Message to regular users (non-admin)