getTotalFatalErrors() is now the right name
authorRoland Häder <roland@mxchange.org>
Sun, 8 Feb 2009 17:34:51 +0000 (17:34 +0000)
committerRoland Häder <roland@mxchange.org>
Sun, 8 Feb 2009 17:34:51 +0000 (17:34 +0000)
inc/databases.php
inc/footer.php
inc/functions.php
inc/modules/guest/what-login.php
install.php

index cf6373d440045736eed6c834f4b1c9c4c724d228..308c476b9b60b02b256ad638ef44c3249c9f3eae 100644 (file)
@@ -97,7 +97,7 @@ define('START_TDAY', MAKE_TIME(0, 0, 0, time()));
 define('SERVER_URL', "http://www.mxchange.org");
 
 // Current SVN revision
-define('CURR_SVN_REVISION', "720");
+define('CURR_SVN_REVISION', "721");
 
 // Take a prime number which is long (if you know a longer one please try it out!)
 define('_PRIME', 591623);
index 84dcbd0eed2a28add65a4f50c860a42d715af54b..c32e5cdbde0ddffcf0f740394787a26d8744d89f 100644 (file)
@@ -43,7 +43,7 @@ if (!defined('__SECURITY')) {
 // Footer disabled or already sent?
 if (($footer != "1") && ($footer != "2") && ($CSS != "1")) {
        // Output the generated HTML code or do nothing in direct-mode
-       if (getTotalFatalMessages() > 0) {
+       if (getTotalFatalErrors() > 0) {
                // Output fatal error messages
                require_once(PATH."inc/fatal_errors.php");
        } // END - if
index 03d6b7d1ae343d0787bcc239c41a453ec84bf5bc..f1af163a8fc4899f4833b7ca4dc85fce765f3224 100644 (file)
@@ -199,7 +199,7 @@ function addFatalMessage ($message, $extra="") {
 }
 
 // Getter for total fatal message count
-function getTotalFatalMessages () {
+function getTotalFatalErrors () {
        global $FATAL;
 
        // Init coun
index 23d2f9df8b82fdebf3fd022d2562e034b499fe2e..b3693ca25742f5027ab636df43917ed3937a2c9b 100644 (file)
@@ -162,7 +162,7 @@ if (EXT_IS_ACTIVE("nickname")) {
 // Was an URL constructed?
 if (!empty($URL)) {
        // URL was constructed
-       if (getTotalFatalErrorMessages()) {
+       if (getTotalFatalErrors()) {
                // Fatal errors!
                require_once(PATH."inc/fatal_errors.php");
        } else {
index 4a7366a5de40eb059e738c7533dba3148814f936..a700f22dab2d17f1202c36405d92c6c43482a112 100644 (file)
@@ -76,7 +76,7 @@ if ((isBooleanConstantAndTrue('mxchange_installed')) && (isBooleanConstantAndTru
 } // END - if
 
 // Does something goes wrong?
-if (getTotalFatalMessages() == 0) {
+if (getTotalFatalErrors() == 0) {
        // Add main installation table
        LOAD_TEMPLATE("install_header");