Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'production/downloadsites/eclipse/downloads/YIndex.php')
-rw-r--r--production/downloadsites/eclipse/downloads/YIndex.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/production/downloadsites/eclipse/downloads/YIndex.php b/production/downloadsites/eclipse/downloads/YIndex.php
index 83987e8c5..f9c02bc04 100644
--- a/production/downloadsites/eclipse/downloads/YIndex.php
+++ b/production/downloadsites/eclipse/downloads/YIndex.php
@@ -205,7 +205,7 @@ function printBuildColumns($fileName, $parts) {
$boxesTitle="";
// We skip the main "tests" part for patch builds, since don't expect any (for now).
- if ($buildType !== "P" && $buildType !== "U" && $boxes !== -2) {
+ if ($buildType !== "P" && $boxes !== -2) {
// always put in links, since someone may want to look at logs, even if not tests results, per se
// don't forget to end link, after images decided.
@@ -251,7 +251,7 @@ function printBuildColumns($fileName, $parts) {
$testimage="results.gif";
$testalt="Logs from build";
echo "<img style=\"border:0px\" src=\"../images/$testimage\" title=\"$testalt\" alt=\"$testalt\" />";
- if ($buildType == "P" || $buildType == "U") {
+ if ($buildType == "P") {
echo "&nbsp;(No automated tests)";
} elseif ($boxes == -2) {
echo "&nbsp;(No expected tests)";

Back to the top