diff options
author | jollytoad | 2005-03-09 12:23:00 +0000 |
---|---|---|
committer | jollytoad | 2005-03-09 12:23:00 +0000 |
commit | 9761e868d34acbc08fb4a40558399e3869687300 (patch) | |
tree | 8274fda4671c53d34ecd8ccd73ed55244b41042a | |
parent | 7c19f8b48075c15d2f60707ffdce26eaea944f12 (diff) |
Added tooltiptasticness to tree nodes :)
-rw-r--r-- | classes/Misc.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/classes/Misc.php b/classes/Misc.php index 2af15ac8..031a0acf 100644 --- a/classes/Misc.php +++ b/classes/Misc.php @@ -2,7 +2,7 @@ /** * Class to hold various commonly used functions * - * $Id: Misc.php,v 1.98.2.9 2005/03/09 10:18:39 jollytoad Exp $ + * $Id: Misc.php,v 1.98.2.10 2005/03/09 12:23:00 jollytoad Exp $ */ class Misc { @@ -1391,7 +1391,11 @@ } if (isset($icon)) echo " openIcon=\"{$icon}\""; - + + if (!empty($actions['item']['toolTip'])) { + echo value_xml_attr('toolTip', $actions['item']['toolTip'], $treedata->f); + } + echo "/>\n"; $treedata->moveNext(); |