X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=install.php;h=213a6485eaf7401f7435ad2389d25e90ee8cc821;hb=cc7c700143bca2420ff0497e648d31a18cc9add2;hp=4a7366a5de40eb059e738c7533dba3148814f936;hpb=3daede4c904e23905c3e48dd6749019deca0a0e0;p=mailer.git diff --git a/install.php b/install.php index 4a7366a5de..213a6485ea 100644 --- a/install.php +++ b/install.php @@ -62,7 +62,7 @@ $GLOBALS['module'] = "install"; require("inc/config.php"); // Header -require(PATH."inc/header.php"); +LOAD_INC("inc/header.php"); // Reload page to page=welcome when it is not specified if (!isset($_GET['page'])) { @@ -76,19 +76,19 @@ 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"); // Here start's our installtion stuff - require_once(PATH."inc/install-inc.php"); + LOAD_INC_ONCE("inc/install-inc.php"); // Close main installation table LOAD_TEMPLATE("install_footer"); } // Footer -require(PATH."inc/footer.php"); +LOAD_INC("inc/footer.php"); // ?>