]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
correct password form fields
authorEvan Prodromou <evan@status.net>
Mon, 18 Apr 2011 15:02:16 +0000 (11:02 -0400)
committerEvan Prodromou <evan@status.net>
Mon, 18 Apr 2011 15:02:16 +0000 (11:02 -0400)
plugins/EmailRegistration/confirmregistrationform.php

index 8061a78815344aa5b0451b6e40e746db71905668..eb682d6652abf1aa59a84eed09d9e33d726775ad 100644 (file)
@@ -94,13 +94,13 @@ class ConfirmRegistrationForm extends Form
 
         $this->elementStart('li');
         // TRANS: Field label on account registration page.
-        $this->password('password', _('Password'),
+        $this->password('password1', _('Password'),
                         // TRANS: Field title on account registration page.
                         _('6 or more characters.'));
         $this->elementEnd('li');
         $this->elementStart('li');
         // TRANS: Field label on account registration page. In this field the password has to be entered a second time.
-        $this->password('confirm', _m('PASSWORD','Confirm'),
+        $this->password('password2', _m('PASSWORD','Confirm'),
                         // TRANS: Field title on account registration page.
                         _('Same as password above.'));
         $this->elementEnd('li');