]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-admins_add.php
Updated copyright year.
[mailer.git] / inc / modules / admin / what-admins_add.php
index 7d0cfaf549143863498677bf37e8ad8827f79c0c..20aeb6199b25c4f491ee5850e9bf16a9c24b792f 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2016 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 *
@@ -44,16 +44,16 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Display form is default
-$FORM = true;
+$FORM = TRUE;
 
 // Is the form sent?
 if (isFormSent('add')) {
        // Check all
-       if ((isPostRequestElementSet('login')) && (isPostRequestElementSet('email')) && (isPostRequestElementSet('pass1')) && (isPostRequestElementSet('pass2')) && (postRequestElement('pass1') == postRequestElement('pass2'))) {
+       if ((isPostRequestElementSet('login')) && (isPostRequestElementSet('email')) && (isPostRequestElementSet('password1')) && (isPostRequestElementSet('password2')) && (postRequestElement('password1') == postRequestElement('password2'))) {
                // Add admin when not added already
-               if (addAdminAccount(postRequestElement('login'), generateHash(postRequestElement('pass1')), postRequestElement('email')) == 'done') {
+               if (addAdminAccount(postRequestElement('login'), generateHash(postRequestElement('password1')), postRequestElement('email')) == 'done') {
                        // Do not ouput any form!
-                       $FORM = false;
+                       $FORM = FALSE;
 
                        // Admin login saved
                        displayMessage('{--ADMIN_ADMINS_ADD_DONE--}');
@@ -65,7 +65,7 @@ if (isFormSent('add')) {
 } // END - if
 
 // Shall we display the form?
-if ($FORM === true) {
+if ($FORM === TRUE) {
        // Prepare content
        $content = merge_array(
                array('login' => '', 'email' => ''),
@@ -73,7 +73,7 @@ if ($FORM === true) {
        );
 
        // Load form from template
-       loadTemplate('admin_add_admins', false, $content);
+       loadTemplate('admin_add_admins', FALSE, $content);
 } // END - if
 
 // [EOF]