diff options
Diffstat (limited to 'lib/unsubscribeform.php')
-rw-r--r-- | lib/unsubscribeform.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/lib/unsubscribeform.php b/lib/unsubscribeform.php index 092369db7..ce91a1340 100644 --- a/lib/unsubscribeform.php +++ b/lib/unsubscribeform.php @@ -104,6 +104,16 @@ class UnsubscribeForm extends Form } /** + * Legend of the Form + * + * @return void + */ + function formLegend() + { + $this->out->element('legend', null, _('Unsubscribe from this user')); + } + + /** * Data elements of the form * * @return void @@ -124,6 +134,6 @@ class UnsubscribeForm extends Form function formActions() { - $this->out->submit('submit', _('Unsubscribe')); + $this->out->submit('submit', _('Unsubscribe'), 'submit', null, _('Unsubscribe from this user')); } } |