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);
// 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
}
// Getter for total fatal message count
-function getTotalFatalMessages () {
+function getTotalFatalErrors () {
global $FATAL;
// Init coun
// Was an URL constructed?
if (!empty($URL)) {
// URL was constructed
- if (getTotalFatalErrorMessages()) {
+ if (getTotalFatalErrors()) {
// Fatal errors!
require_once(PATH."inc/fatal_errors.php");
} else {
} // END - if
// Does something goes wrong?
-if (getTotalFatalMessages() == 0) {
+if (getTotalFatalErrors() == 0) {
// Add main installation table
LOAD_TEMPLATE("install_header");