]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-admins_add.php
Fixes and cleanups
[mailer.git] / inc / modules / admin / what-admins_add.php
index cc758a14ba2a1b3a62d35d7dd39fd9b2992a8189..43162f011a0a1cfb9d18eae393415ee9c74aafd2 100644 (file)
  * $Date::                                                            $ *
  * $Tag:: 0.2.1-FINAL                                                 $ *
  * $Author::                                                          $ *
- * Needs to be in all Files and every File needs "svn propset           *
- * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * 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 *
@@ -43,7 +41,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 } // END - if
 
 // Add description as navigation point
-addMenuDescription('admin', __FILE__);
+addYouAreHereLink('admin', __FILE__);
 
 // Display form is default
 $FORM = true;
@@ -51,14 +49,14 @@ $FORM = true;
 // Is the form sent?
 if (isFormSent('add')) {
        // Check all
-       if ((isPostRequestParameterSet('login')) && (isPostRequestParameterSet('email')) && (isPostRequestParameterSet('pass1')) && (isPostRequestParameterSet('pass2')) && (postRequestParameter('pass1') == postRequestParameter('pass2'))) {
+       if ((isPostRequestElementSet('login')) && (isPostRequestElementSet('email')) && (isPostRequestElementSet('pass1')) && (isPostRequestElementSet('pass2')) && (postRequestElement('pass1') == postRequestElement('pass2'))) {
                // Add admin when not added already
-               if (addAdminAccount(postRequestParameter('login'), generateHash(postRequestParameter('pass1')), postRequestParameter('email')) == 'done') {
+               if (addAdminAccount(postRequestElement('login'), generateHash(postRequestElement('pass1')), postRequestElement('email')) == 'done') {
                        // Do not ouput any form!
                        $FORM = false;
 
                        // Admin login saved
-                       loadTemplate('admin_settings_saved', false, getMessage('ADMIN_ADMINS_ADD_DONE'));
+                       displayMessage('{--ADMIN_ADMINS_ADD_DONE--}');
 
                        // Run filter chain
                        runFilterChain('post_admin_added', postRequestArray());
@@ -75,7 +73,7 @@ if ($FORM === true) {
        );
 
        // Load form from template
-       loadTemplate('admin_admins_add', false, $content);
+       loadTemplate('admin_add_admins', false, $content);
 } // END - if
 
 // [EOF]