]> git.mxchange.org Git - mailer.git/blobdiff - install.php
More improved SQL queries
[mailer.git] / install.php
index a700f22dab2d17f1202c36405d92c6c43482a112..b6f2416d36315c62db112e7984b0c574303ea633 100644 (file)
@@ -45,7 +45,7 @@
 define('mxchange_installing', true);
 
 // Load security system
-require("inc/libs/security_functions.php");
+require_once("inc/libs/security_functions.php");
 
 // Init "action" and "what"
 global $what, $action;
@@ -59,10 +59,10 @@ $CSS = 0;
 $GLOBALS['module'] = "install";
 
 // Load config file
-require("inc/config.php");
+require_once("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'])) {
@@ -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");
 
 //
 ?>