X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=install.php;h=429abb4272f715763fe23f6268cb1a24517dc04b;hb=7a27c44db48d021c1e54a76916914ef41ff49372;hp=85abd0c042d7d88318d5a49fc83badcea69b7cfa;hpb=09a5472967b3dcf97e4e48442ac064b9af8dc86e;p=mailer.git diff --git a/install.php b/install.php index 85abd0c042..429abb4272 100644 --- a/install.php +++ b/install.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -60,7 +60,7 @@ require('inc/config-global.php'); setContentType('text/html'); // Reload page to page=welcome when it is not specified -if (!isGetRequestParameterSet('page')) { +if (!isGetRequestElementSet('page')) { redirectToUrl('install.php?page=welcome'); } // END - if @@ -68,7 +68,7 @@ if (!isGetRequestParameterSet('page')) { setUsername('{--USERNAME_INSTALLER--}'); // Already installed? -if ((isInstalled()) && (getRequestParameter('page') != 'finished')) { +if ((isInstalled()) && (getRequestElement('page') != 'finished')) { // Add fatal message addFatalMessage(__FILE__, __LINE__, '{--ALREADY_INSTALLED--}'); } // END - if