diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-01-18 18:32:33 +0000 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-01-18 18:32:33 +0000 |
commit | 2c4db393f54eddbe021b11a42ed2bb6abf5b11b2 (patch) | |
tree | d3baaf8a33b3ee4221eaa0f4dec0fe1b260cad18 | |
parent | b6b7ae1a9722e2e9600762d52d93ff09e464fa92 (diff) |
Fix output of email settings for confirmed address
-rw-r--r-- | actions/emailsettings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/emailsettings.php b/actions/emailsettings.php index b1f13c18c..8b8a5351e 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -95,7 +95,7 @@ class EmailsettingsAction extends AccountSettingsAction $this->hidden('token', common_session_token()); if ($user->email) { - $this->element('p', array('id' => 'email_confirmed', $user->email)); + $this->element('p', array('id' => 'email_confirmed'), $user->email); $this->element('p', array('class' => 'form_note'), _('Current confirmed email address.')); $this->hidden('email', $user->email); $this->submit('remove', _('Remove')); |