Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Williams2014-12-09 21:49:05 +0000
committerDavid Williams2014-12-09 21:49:05 +0000
commit74d2d5354b2a777911b5ce3081cfc010405141a8 (patch)
tree8872b42a0ef03fd874b008fb063fd43a35c093be
parent7c4a2fcde2c445c25f27821c01ccd056553d93b1 (diff)
downloadeclipse.platform.releng.aggregator-74d2d5354b2a777911b5ce3081cfc010405141a8.tar.gz
eclipse.platform.releng.aggregator-74d2d5354b2a777911b5ce3081cfc010405141a8.tar.xz
eclipse.platform.releng.aggregator-74d2d5354b2a777911b5ce3081cfc010405141a8.zip
Bug 451808 - Add Solstice "thin" theme to download pages
fix regression on main DL page (comment 16)
-rw-r--r--production/downloadsites/eclipse/downloads/createIndex4x.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/production/downloadsites/eclipse/downloads/createIndex4x.php b/production/downloadsites/eclipse/downloads/createIndex4x.php
index 980917154..a94595bfb 100644
--- a/production/downloadsites/eclipse/downloads/createIndex4x.php
+++ b/production/downloadsites/eclipse/downloads/createIndex4x.php
@@ -243,15 +243,16 @@ function printBuildColumns($fileName, $parts) {
$testimage="runtests.gif";
$testalt="Integration tests are running ...";
}
- echo "<img style=\"border:0px\" src=\"../images/$testimage\" title=\"$testalt\" alt=\"$testalt\" /></a>\n";
+ echo "<img style=\"border:0px\" src=\"../images/$testimage\" title=\"$testalt\" alt=\"$testalt\" />\n";
if ($boxes > -1) {
echo "&nbsp;(".$boxes." of ".$expectedtestConfigs." platforms)\n";
}
+ echo "</a>\n";
} else {
echo "<a href=\"$dropDir/testResults.php\" title=\"$boxesTitle\" style=\"text-decoration: none\">";
$testimage="results.gif";
$testalt="Logs from build";
- echo "<img style=\"border:0px\" src=\"../images/$testimage\" title=\"$testalt\" alt=\"$testalt\" /></a>";
+ echo "<img style=\"border:0px\" src=\"../images/$testimage\" title=\"$testalt\" alt=\"$testalt\" />";
if ($buildType == "P") {
echo "&nbsp;(No automated tests)";
} elseif ($boxes == -2) {
@@ -259,8 +260,8 @@ function printBuildColumns($fileName, $parts) {
} else {
echo "&nbsp;(unexpected test boxes)";
}
+ echo "</a>\n";
}
- //echo "</a>\n";
}
echo "</td>\n";
return $buildName;

Back to the top