summaryrefslogtreecommitdiff
path: root/actions/emailsettings.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2009-01-18 18:32:33 +0000
committerEvan Prodromou <evan@controlyourself.ca>2009-01-18 18:32:33 +0000
commit2c4db393f54eddbe021b11a42ed2bb6abf5b11b2 (patch)
treed3baaf8a33b3ee4221eaa0f4dec0fe1b260cad18 /actions/emailsettings.php
parentb6b7ae1a9722e2e9600762d52d93ff09e464fa92 (diff)
Fix output of email settings for confirmed address
Diffstat (limited to 'actions/emailsettings.php')
-rw-r--r--actions/emailsettings.php2
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'));