X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=install.php;h=89b588949de2e872353dfdafadf44f92d70a0f23;hp=71c7f7d1e0979240bc94354071f83b9280bc52e3;hb=30f1d46dca2b026b23c8cefb7e6e4bdc98fee337;hpb=263a089d8a499e0e26d0af9e7aa7639f88b8ca60 diff --git a/install.php b/install.php index 71c7f7d1e0..89b588949d 100644 --- a/install.php +++ b/install.php @@ -55,7 +55,7 @@ require('inc/libs/security_functions.php'); // Init start time $GLOBALS['startTime'] = microtime(true); -// Tell every module / include file we are installing +// Tell every module / require file we are installing $GLOBALS['mxchange_installing'] = true; // Set CSS variable for "normal mode" @@ -71,7 +71,7 @@ require('inc/config-global.php'); setContentType('text/html'); // Reload page to page=welcome when it is not specified -if (!isGetRequestElementSet('page')) { +if (!isGetRequestParameterSet('page')) { redirectToUrl('install.php?page=welcome'); } // END - if @@ -79,7 +79,7 @@ if (!isGetRequestElementSet('page')) { setUsername('{--USERNAME_INSTALLER--}'); // Already installed? -if ((isInstalled()) && (getRequestElement('page' != 'finished'))) { +if ((isInstalled()) && (getRequestParameter('page' != 'finished'))) { // Add fatal message addFatalMessage(__FILE__, __LINE__, getMessage('ALREADY_INSTALLED')); } // END - if