[evolvis-commits] r8648: Fixed a few hardcoded bgcolor values. ↵

mirabilos at evolvis.org mirabilos at evolvis.org
Thu Feb 24 16:48:04 CET 2011


Author: mirabilos
Date: 2011-02-24 16:48:03 +0100 (Thu, 24 Feb 2011)
New Revision: 8648

Modified:
   trunk/gforge_base/evolvisforge-5.1/gforge/www/forum/forum.php
   trunk/gforge_base/evolvisforge-5.1/gforge/www/new/index.php
   trunk/gforge_base/evolvisforge-5.1/gforge/www/search/index.php
   trunk/gforge_base/evolvisforge-5.1/gforge/www/stats/site_stats_utils.php
Log:
Fixed a few hardcoded bgcolor values.


Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/forum/forum.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/forum/forum.php	2011-02-24 15:48:02 UTC (rev 8647)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/forum/forum.php	2011-02-24 15:48:03 UTC (rev 8648)
@@ -310,7 +310,7 @@
 		This code puts the nice next/prev.
 	*/
 	$ret_val .= '<table width="100%" border="0">
-		<tr bgcolor="#eeeeee"><td width="50%">';
+		<tr bgcolor="'.$HTML->COLOR_LTBACK1.'"><td width="50%">';
 	if ($offset != 0) {
 		$ret_val .= '<span style="font-family:arial,helvetica;font-size:3;text-decoration:none">
 		<a href="javascript:history.back()"><strong>' .

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/new/index.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/new/index.php	2011-02-24 15:48:02 UTC (rev 8647)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/new/index.php	2011-02-24 15:48:03 UTC (rev 8648)
@@ -103,7 +103,7 @@
 		}
 	}
 
-	echo "<tr style=\"background-color:#eeeeee\"><td>";
+	echo "<tr style=\"background-color:".$HTML->COLOR_LTBACK1."\"><td>";
         if ($offset != 0) {
 		echo "<span style=\"text-decoration: none;font-family: arial, helvetica\">";
         	echo "<a href=\"/new/?offset=".($offset-20)."\">" .

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/search/index.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/search/index.php	2011-02-24 15:48:02 UTC (rev 8647)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/search/index.php	2011-02-24 15:48:03 UTC (rev 8648)
@@ -465,7 +465,7 @@
 
 	echo "<br />\n";
 
-	echo "<table style=\"background-color:#eeeeee\" width=\"100%\" cellpadding=\"5\" cellspacing=\"0\">\n";
+	echo "<table style=\"background-color:".$HTML->COLOR_LTBACK1."\" width=\"100%\" cellpadding=\"5\" cellspacing=\"0\">\n";
 	echo "<tr>\n";
 	echo "\t<td align=\"left\">";
 	if ($offset != 0) {

Modified: trunk/gforge_base/evolvisforge-5.1/gforge/www/stats/site_stats_utils.php
===================================================================
--- trunk/gforge_base/evolvisforge-5.1/gforge/www/stats/site_stats_utils.php	2011-02-24 15:48:02 UTC (rev 8647)
+++ trunk/gforge_base/evolvisforge-5.1/gforge/www/stats/site_stats_utils.php	2011-02-24 15:48:03 UTC (rev 8648)
@@ -108,7 +108,7 @@
 function stats_site_projects_form( $report='last_30', $orderby = 'downloads', $projects = 0, $trovecat = 0 ) {
 	global $Language;	
 	print '<form action="projects.php" method="get">' . "\n";
-	print '<table width="100%" cellpadding="0" cellspacing="0" style="background-color:#eeeeee">' . "\n";
+	print '<table width="100%" cellpadding="0" cellspacing="0" style="background-color:"'.$HTML->COLOR_LTBACK1.'">' . "\n";
 
 	print '<tr><td><strong>'.$Language->getText('stats_site_utils','in_trove_category').'</strong></td><td>';
 	stats_generate_trove_pulldown( $trovecat );
@@ -254,7 +254,7 @@
 		?>
 		<p><table width="100%" cellpadding="0" cellspacing="0" border="0">
 
-		<tr valign="top" align="right" style="bgcolor:#eeeeee">
+		<tr valign="top" align="right" style="bgcolor:<?php echo $HTML->COLOR_LTBACK1;?>">
 			<td><strong><?php echo $Language->getText('stats_site_utils','group_name'); ?></strong></td>
 			<td colspan="2"><strong><?php echo $Language->getText('stats_site_utils','page_views'); ?></strong></td>
 			<td><strong><?php echo $Language->getText('stats_site_utils','downloads'); ?></strong></td>
@@ -279,7 +279,7 @@
 		$uri_string .= "&orderby=";
 
 		?>
-		<tr valign="top" align="right" style="bgcolor:#eeeeee">
+		<tr valign="top" align="right" style="bgcolor:<?php echo $HTML->COLOR_LTBACK1; ?>">
 			<td> </td>
 			<td><a href="<?php echo $uri_string; ?>site_views"><?php echo $Language->getText('stats_site_utils','site'); ?></a></td>
 			<td><a href="<?php echo $uri_string; ?>subdomain_views"><?php echo $Language->getText('stats_site_utils','subdomain'); ?></a></td>



More information about the evolvis-commits mailing list