]> git.mxchange.org Git - mailer.git/blobdiff - install.php
More typos fixed, thanks to Profi-Concept
[mailer.git] / install.php
index a700f22dab2d17f1202c36405d92c6c43482a112..04f02e86ba7bc47022897983619c0ebc80cd915a 100644 (file)
@@ -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'])) {
@@ -72,7 +72,7 @@ if (!isset($_GET['page'])) {
 // Already installed?
 if ((isBooleanConstantAndTrue('mxchange_installed')) && (isBooleanConstantAndTrue('admin_registered'))) {
        // Add fatal message
-       addFatalMessage(ALREADY_INSTALLED);
+       addFatalMessage(getMessage('ALREADY_INSTALLED'));
 } // END - if
 
 // Does something goes wrong?
@@ -81,14 +81,14 @@ if (getTotalFatalErrors() == 0) {
        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");
 
 //
 ?>