diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-17 20:57:48 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-17 20:57:48 +0000 |
commit | 5a81b6d04ea7e2f7c5e5799ada8a611ec9406317 (patch) | |
tree | 2253241668b3bf8e11915f181a12f134b114ae88 /lib/favorform.php | |
parent | e93807d0e47266805fcf26738a11f23b5e689d18 (diff) |
Added @title to input submit (reusing $label value until we really
need to make it custom)
Diffstat (limited to 'lib/favorform.php')
-rw-r--r-- | lib/favorform.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/favorform.php b/lib/favorform.php index 977f19183..519b305b6 100644 --- a/lib/favorform.php +++ b/lib/favorform.php @@ -111,7 +111,7 @@ class FavorForm extends Form */ function formLegend() { - $this->out->element('legend', null, _('Delete this notice')); + $this->out->element('legend', null, _('Favor this notice')); } @@ -137,7 +137,7 @@ class FavorForm extends Form function formActions() { $this->out->submit('favor-submit-' . $this->notice->id, - _('Favorite')); + _('Favor this notice')); } /** |