X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=install.php;h=b6f2416d36315c62db112e7984b0c574303ea633;hp=a700f22dab2d17f1202c36405d92c6c43482a112;hb=c47144dd555bbab4acdf9085e4623900dedb0e7c;hpb=49ffe0a4fb551d0965e97db1ad4ff12f13f4b9ad diff --git a/install.php b/install.php index a700f22dab..b6f2416d36 100644 --- a/install.php +++ b/install.php @@ -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"); // ?>