diff options
author | sarven <csarven@plantard.controlezvous.ca> | 2009-01-17 21:09:42 +0000 |
---|---|---|
committer | sarven <csarven@plantard.controlezvous.ca> | 2009-01-17 21:09:42 +0000 |
commit | 91475ca33f27be5116268415d80513bba6cfbd13 (patch) | |
tree | 442e4fe3afc7f140986d753aec2a6f5f7c790665 /lib | |
parent | 5a81b6d04ea7e2f7c5e5799ada8a611ec9406317 (diff) |
Update. Added separate $title param for input submit
Diffstat (limited to 'lib')
-rw-r--r-- | lib/favorform.php | 2 | ||||
-rw-r--r-- | lib/htmloutputter.php | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/favorform.php b/lib/favorform.php index 519b305b6..37e13fb1c 100644 --- a/lib/favorform.php +++ b/lib/favorform.php @@ -137,7 +137,7 @@ class FavorForm extends Form function formActions() { $this->out->submit('favor-submit-' . $this->notice->id, - _('Favor this notice')); + _('Favor'), 'submit', null, _('Favor this notice')); } /** diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index f83998bc2..1e164933c 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -313,14 +313,14 @@ class HTMLOutputter extends XMLOutputter * @todo add a $name parameter */ - function submit($id, $label, $cls='submit', $name=null) + function submit($id, $label, $cls='submit', $name=null, $title=null) { $this->element('input', array('type' => 'submit', 'id' => $id, 'name' => ($name) ? $name : $id, 'class' => $cls, 'value' => $label, - 'title' => $label)); + 'title' => $title)); } /** |