[evolvis-commits] r11930: Fixed [#2628] Forum message moderation tables have no background

mirabilos at evolvis.org mirabilos at evolvis.org
Thu Feb 24 18:29:19 CET 2011


Author: mirabilos
Date: 2011-02-24 18:29:19 +0100 (Thu, 24 Feb 2011)
New Revision: 11930

Modified:
   trunk/gforge_base/evolvisforge-5.1/gforge/www/include/Layout.class
   trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/gforge-simple-theme/Theme.class
   trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/lite/Theme.class
   trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/osx/Theme.class
   trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/sliq/Theme.class
Log:
Fixed [#2628] Forum message moderation tables have no background

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/include/Layout.class
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/include/Layout.class	2011-02-24 17:29:16 UTC (rev 11929)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/include/Layout.class	2011-02-24 17:29:19 UTC (rev 11930)
@@ -371,9 +371,9 @@
 	 */
 	function boxGetAltRowStyle($i) {
 		if ($i % 2 == 0) {
-			return 'class="altRowStyleEven"';
+			return ' class="altRowStyleEven"';
 		} else {
-			return 'class="altRowStyleOdd"';
+			return ' class="altRowStyleOdd"';
 		}
 	}
 

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/gforge-simple-theme/Theme.class
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/gforge-simple-theme/Theme.class	2011-02-24 17:29:16 UTC (rev 11929)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/gforge-simple-theme/Theme.class	2011-02-24 17:29:19 UTC (rev 11930)
@@ -313,9 +313,9 @@
 	 */
 	function boxGetAltRowStyle($i) {
 		if ($i % 2 == 0) {
-			return 'class="altRowStyleEven"';
+			return ' class="altRowStyleEven"';
 		} else {
-			return 'class="altRowStyleOdd"';
+			return ' class="altRowStyleOdd"';
 		}
 	}
 

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/lite/Theme.class
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/lite/Theme.class	2011-02-24 17:29:16 UTC (rev 11929)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/lite/Theme.class	2011-02-24 17:29:19 UTC (rev 11930)
@@ -240,9 +240,9 @@
 	 */
 	function boxGetAltRowStyle($i) {
 		if ($i % 2 == 0) {
-			return 'BGCOLOR="#FFFFFF"';
+			return ' BGCOLOR="#FFFFFF"';
 		} else {
-			return 'BGCOLOR="' . $this->COLOR_LTBACK1 . '"';
+			return ' BGCOLOR="' . $this->COLOR_LTBACK1 . '"';
 		}
 	}
 

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/osx/Theme.class
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/osx/Theme.class	2011-02-24 17:29:16 UTC (rev 11929)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/osx/Theme.class	2011-02-24 17:29:19 UTC (rev 11930)
@@ -218,11 +218,11 @@
 	function boxGetAltRowStyle($i) {
 		switch ($i % 3 ) {
 			case 0:
-				return 'bgcolor="#FFFFFF"';
+				return ' bgcolor="#FFFFFF"';
 			case 1:
-				return 'bgcolor="' . $this->COLOR_LTBACK1 . '"';
+				return ' bgcolor="' . $this->COLOR_LTBACK1 . '"';
 			case 2:
-				return 'bgcolor="' . $this->COLOR_LTBACK2 . '"';
+				return ' bgcolor="' . $this->COLOR_LTBACK2 . '"';
 		}
 	}
 

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/sliq/Theme.class
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/sliq/Theme.class	2011-02-24 17:29:16 UTC (rev 11929)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/themes/sliq/Theme.class	2011-02-24 17:29:19 UTC (rev 11930)
@@ -316,9 +316,9 @@
      */
     function boxGetAltRowStyle($i) {
         if ($i % 2 == 0) {
-            return 'bgcolor="#EAEAEA"';
+            return ' bgcolor="#EAEAEA"';
         } else {
-            return 'bgcolor="#E0E0E0"';
+            return ' bgcolor="#E0E0E0"';
         }
     }
 



More information about the evolvis-commits mailing list