diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-21 07:14:43 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-21 07:14:43 +0000 |
commit | 92e2f3babc89863518b8711a1b62661752d806f5 (patch) | |
tree | 125858c9f6520508de0fd8e0cf12778d185eb152 /lib/unblockform.php | |
parent | 27b627c09451c099b18a7cde90f6a028f820046c (diff) |
Added @title to user_action inputs and anchor and form legends
Diffstat (limited to 'lib/unblockform.php')
-rw-r--r-- | lib/unblockform.php | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/unblockform.php b/lib/unblockform.php index 025011a82..6a8831b29 100644 --- a/lib/unblockform.php +++ b/lib/unblockform.php @@ -111,6 +111,17 @@ class UnblockForm extends Form } /** + * Legend of the Form + * + * @return void + */ + function formLegend() + { + $this->out->element('legend', null, _('Unblock this user')); + } + + + /** * Data elements of the form * * @return void @@ -136,6 +147,6 @@ class UnblockForm extends Form function formActions() { - $this->out->submit('submit', _('Unblock')); + $this->out->submit('submit', _('Unblock'), 'submit', null, _('Unblock this user')); } } |