]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-admins_add.php
Fixed also usage of previously renamed fields as they must be the same
[mailer.git] / inc / modules / admin / what-admins_add.php
index d6916e00dc9db404abac4e47ce73f8e1c350730d..0b5d3932fb36641afba408e3098b9f75aa457de2 100644 (file)
@@ -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]