summaryrefslogtreecommitdiff
path: root/actions
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-17 00:49:48 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-17 00:49:48 +0000
commit0b947a33bc401faaddcae3bb5b39b9cbe2d5277c (patch)
treeda5162c957dec20c0d6bfc9554139d51afe9b276 /actions
parent42977cac5ee41b8ff21b6497e6b487e9a3b338d3 (diff)
Minor
Diffstat (limited to 'actions')
-rw-r--r--actions/smssettings.php12
1 files changed, 8 insertions, 4 deletions
diff --git a/actions/smssettings.php b/actions/smssettings.php
index f214997ec..d7c621b13 100644
--- a/actions/smssettings.php
+++ b/actions/smssettings.php
@@ -83,12 +83,14 @@ class SmssettingsAction extends SettingsAction
$user = common_current_user();
$this->elementStart('form', array('method' => 'post',
- 'id' => 'smssettings',
+ 'id' => 'form_settings_sms',
+ 'class' => 'form_settings',
'action' =>
common_local_url('smssettings')));
+ $this->elementStart('fieldset');
+ $this->element('legend', null, _('Address'));
$this->hidden('token', common_session_token());
- $this->element('h2', null, _('Address'));
if ($user->sms) {
$this->elementStart('p');
@@ -126,6 +128,7 @@ class SmssettingsAction extends SettingsAction
$this->submit('add', _('Add'));
}
}
+ $this->elementEnd('fieldset');
if ($user->sms) {
$this->element('h2', null, _('Incoming email'));
@@ -147,8 +150,8 @@ class SmssettingsAction extends SettingsAction
$this->submit('newincoming', _('New'));
}
- $this->element('h2', null, _('Preferences'));
-
+ $this->elementStart('fieldset', array('id' => 'sms_preferences'));
+ $this->element('legend', null, _('Preferences'));
$this->checkbox('smsnotify',
_('Send me notices through SMS; '.
'I understand I may incur '.
@@ -157,6 +160,7 @@ class SmssettingsAction extends SettingsAction
$this->submit('save', _('Save'));
+ $this->elementEnd('fieldset');
$this->elementEnd('form');
}