From: Evan Prodromou Date: Mon, 18 Apr 2011 15:02:16 +0000 (-0400) Subject: correct password form fields X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=36b34ea831bea9fbc7ae91acffbf7e19c68ead07;p=quix0rs-gnu-social.git correct password form fields --- diff --git a/plugins/EmailRegistration/confirmregistrationform.php b/plugins/EmailRegistration/confirmregistrationform.php index 8061a78815..eb682d6652 100644 --- a/plugins/EmailRegistration/confirmregistrationform.php +++ b/plugins/EmailRegistration/confirmregistrationform.php @@ -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');