diff options
author | Sarven Capadisli <csarven@status.net> | 2010-03-24 21:34:53 +0100 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-03-24 21:34:53 +0100 |
commit | 9fe12be41eec8132fcfa6da2dc5fad926a932286 (patch) | |
tree | 00d0f0cbe9459aa0353f8405f93af28c9427131a /actions | |
parent | 09ff213d1c6b8dc42f28b9c637431bafa54146ec (diff) |
Using unique @for, @id pair for jabber and sms options in subscriptions
Diffstat (limited to 'actions')
-rw-r--r-- | actions/subscriptions.php | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/actions/subscriptions.php b/actions/subscriptions.php index ba6171ef4..7b10b3425 100644 --- a/actions/subscriptions.php +++ b/actions/subscriptions.php @@ -196,12 +196,30 @@ class SubscriptionsListItem extends SubscriptionListItem $this->out->hidden('token', common_session_token()); $this->out->hidden('profile', $this->profile->id); if (common_config('xmpp', 'enabled')) { - $this->out->checkbox('jabber', _('Jabber'), $sub->jabber); + $attrs = array('name' => 'jabber', + 'type' => 'checkbox', + 'class' => 'checkbox', + 'id' => 'jabber-'.$this->profile->id); + if ($sub->jabber) { + $attrs['checked'] = 'checked'; + } + + $this->out->element('input', $attrs); + $this->out->element('label', array('for' => 'jabber-'.$this->profile->id), _('Jabber')); } else { $this->out->hidden('jabber', $sub->jabber); } if (common_config('sms', 'enabled')) { - $this->out->checkbox('sms', _('SMS'), $sub->sms); + $attrs = array('name' => 'sms', + 'type' => 'checkbox', + 'class' => 'checkbox', + 'id' => 'sms-'.$this->profile->id); + if ($sub->sms) { + $attrs['checked'] = 'checked'; + } + + $this->out->element('input', $attrs); + $this->out->element('label', array('for' => 'sms-'.$this->profile->id), _('SMS')); } else { $this->out->hidden('sms', $sub->sms); } |