anewt-developers team mailing list archive
-
anewt-developers team
-
Mailing list archive
-
Message #00278
[Branch ~uws/anewt/anewt.uws] Rev 1793: [form] Use correct variable for form control help text
------------------------------------------------------------
revno: 1793
committer: Wouter Bolsterlee <uws@xxxxxxxxx>
branch nick: anewt
timestamp: Sat 2010-10-02 20:45:11 +0200
message:
[form] Use correct variable for form control help text
modified:
form/renderer/default.lib.php
--
lp:anewt
https://code.launchpad.net/~uws/anewt/anewt.uws
Your team Anewt developers is subscribed to branch lp:anewt.
To unsubscribe from this branch go to https://code.launchpad.net/~uws/anewt/anewt.uws/+edit-subscription
=== modified file 'form/renderer/default.lib.php'
--- form/renderer/default.lib.php 2010-03-27 22:15:25 +0000
+++ form/renderer/default.lib.php 2010-10-02 18:45:11 +0000
@@ -136,7 +136,7 @@
$help = $control->_get('help');
if (!is_null($help))
{
- $label_node->set_attribute('title', to_string($help_text));
+ $label_node->set_attribute('title', to_string($help));
$label_node->add_class('with-help');
}