One more found
[mailer.git] / install.php
index 85abd0c042d7d88318d5a49fc83badcea69b7cfa..7c7bc4fc4b6047f056687268ac2c100c0c22561c 100644 (file)
@@ -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 *
@@ -51,7 +51,7 @@ $GLOBALS['mailer_installing'] = true;
 $GLOBALS['output_mode'] = '0';
 
 // Set module
-$GLOBALS['module'] = 'install';
+$GLOBALS['__module'] = 'install';
 
 // Load config file
 require('inc/config-global.php');
@@ -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