X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=install.php;h=788f7bfa026a2f11065b1b0d47b399c01b4e5198;hp=0253d0e1d423a73aa2d8c1b59e4ee8f8deaaa8ec;hb=7b0f17cd637e388049d2167811e4332cec1e979b;hpb=a090e351c49fe021fb3064325694da03402332e0 diff --git a/install.php b/install.php index 0253d0e1d4..788f7bfa02 100644 --- a/install.php +++ b/install.php @@ -66,11 +66,11 @@ $GLOBALS['module'] = 'install'; require('inc/config.php'); // Header -LOAD_INC('inc/header.php'); +loadInclude('inc/header.php'); // Reload page to page=welcome when it is not specified if (!REQUEST_ISSET_GET('page')) { - LOAD_URL('install.php?page=welcome'); + redirectToUrl('install.php?page=welcome'); } // END - if // Already installed? @@ -85,14 +85,14 @@ if (getTotalFatalErrors() == 0) { LOAD_TEMPLATE('install_header'); // Here start's our installtion stuff - LOAD_INC_ONCE('inc/install-inc.php'); + loadIncludeOnce('inc/install-inc.php'); // Close main installation table LOAD_TEMPLATE('install_footer'); } // Footer -LOAD_INC('inc/footer.php'); +loadInclude('inc/footer.php'); // ?>