summaryrefslogtreecommitdiff
path: root/lib/blockform.php
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-21 07:14:43 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-21 07:14:43 +0000
commit92e2f3babc89863518b8711a1b62661752d806f5 (patch)
tree125858c9f6520508de0fd8e0cf12778d185eb152 /lib/blockform.php
parent27b627c09451c099b18a7cde90f6a028f820046c (diff)
Added @title to user_action inputs and anchor and form legends
Diffstat (limited to 'lib/blockform.php')
-rw-r--r--lib/blockform.php14
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/blockform.php b/lib/blockform.php
index b7790681d..ea22c1cec 100644
--- a/lib/blockform.php
+++ b/lib/blockform.php
@@ -112,6 +112,18 @@ class BlockForm extends Form
return common_local_url('block');
}
+
+ /**
+ * Legend of the Form
+ *
+ * @return void
+ */
+ function formLegend()
+ {
+ $this->out->element('legend', null, _('Block this user'));
+ }
+
+
/**
* Data elements of the form
*
@@ -138,6 +150,6 @@ class BlockForm extends Form
function formActions()
{
- $this->out->submit('submit', _('Block'));
+ $this->out->submit('submit', _('block'), 'submit', null, _('Block this user'));
}
}