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/htmloutputter.php | |
parent | e93807d0e47266805fcf26738a11f23b5e689d18 (diff) |
Added @title to input submit (reusing $label value until we really
need to make it custom)
Diffstat (limited to 'lib/htmloutputter.php')
-rw-r--r-- | lib/htmloutputter.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/htmloutputter.php b/lib/htmloutputter.php index 71f17604b..f83998bc2 100644 --- a/lib/htmloutputter.php +++ b/lib/htmloutputter.php @@ -319,7 +319,8 @@ class HTMLOutputter extends XMLOutputter 'id' => $id, 'name' => ($name) ? $name : $id, 'class' => $cls, - 'value' => $label)); + 'value' => $label, + 'title' => $label)); } /** |