[Fusionforge-commits] FusionForge branch Branch_5_3 updated. 247d404a78c4ce704cc543dbf181e352920c61e3

Franck VILLAUME nerville at fusionforge.org
Thu Feb 27 18:32:08 CET 2014


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".

The branch, Branch_5_3 has been updated
       via  247d404a78c4ce704cc543dbf181e352920c61e3 (commit)
      from  a2d762dd2e7566571aa2699c86d227ec7fa4aef4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 247d404a78c4ce704cc543dbf181e352920c61e3
Author: Franck Villaume <franck.villaume at trivialdev.com>
Date:   Thu Feb 27 18:31:40 2014 +0100

    funky-wOw: sync fix from funky

diff --git a/src/www/themes/funky-wOw/Theme.class.php b/src/www/themes/funky-wOw/Theme.class.php
index 5bf0862..73b7d2a 100644
--- a/src/www/themes/funky-wOw/Theme.class.php
+++ b/src/www/themes/funky-wOw/Theme.class.php
@@ -266,20 +266,25 @@ class Theme extends Layout {
 			// middle part
 			$return .= '<td class="tg-middle" style="width:'.$tabwidth.'%;"><a ';
 			$return .= 'id="'.md5($TABS_DIRS[$i]).'" ';
-			if ($use_tooltips && isset($TABS_TOOLTIPS[$i]))
-				$return .= 'class="tabtitle" title="'.$TABS_TOOLTIPS[$i].'" ';
 			$return .= 'href="'.$TABS_DIRS[$i].'">' . "\n";
 			$return .= '<span';
 
 			if ($selected == $i)
 				$return .= ' class="selected"';
-
 			$return .= '>';
 			$return .= '<span';
 
+			$classes = '';
 			if ($nested)
-				$return .= ' class="nested"';
+				$classes .= 'nested ';
 
+			if ($use_tooltips) {
+				$classes .= ' tabtitle ';
+				if  (isset($TABS_TOOLTIPS[$i])) {
+					$return .= ' title="'.$TABS_TOOLTIPS[$i].'" ';
+				}
+			}
+                        $return .= ' class="'.$classes.'" ';
 			$return .= '>' . "\n";
 			$return .= ''.$TABS_TITLES[$i].'' . "\n";
 			$return .= '</span>';

-----------------------------------------------------------------------

Summary of changes:
 src/www/themes/funky-wOw/Theme.class.php |   13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
FusionForge



More information about the Fusionforge-commits mailing list