From 5253b9ea68fe30785a2218df1605386ffca8b06f Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Mon, 18 Apr 2011 04:30:13 -0400 Subject: [PATCH] ConfirmRegistrationForm includes the code --- plugins/EmailRegistration/emailregister.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/EmailRegistration/emailregister.php b/plugins/EmailRegistration/emailregister.php index 85ab762bb3..0811554f49 100644 --- a/plugins/EmailRegistration/emailregister.php +++ b/plugins/EmailRegistration/emailregister.php @@ -477,11 +477,13 @@ class ConfirmRegistrationForm extends Form function formData() { $this->out->element('p', 'instructions', - _('Enter a password to confirm your account.')); + sprintf(_('Enter a password to confirm your account.'))); $this->out->elementStart('fieldset', array('id' => 'new_bookmark_data')); $this->out->elementStart('ul', 'form_data'); + $this->hidden('code', $this->code); + $this->elementStart('li'); // TRANS: Field label on account registration page. $this->password('password', _('Password'), -- 2.39.5