diff options
Diffstat (limited to 'lib/htmloutputter.php')
-rw-r--r-- | lib/htmloutputter.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 71f17604b..1e164933c 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -313,13 +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)); + 'value' => $label, + 'title' => $title)); } /** |