From a53a437b67da9a261f757ab3ad0c76399be51b77 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Tue, 11 Dec 2012 23:03:12 +0000 Subject: Display new failures compared to previous run --- autobuild/index.php | 62 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 52 insertions(+), 10 deletions(-) diff --git a/autobuild/index.php b/autobuild/index.php index 83bee67..40fd7a9 100644 --- a/autobuild/index.php +++ b/autobuild/index.php @@ -2,21 +2,28 @@ Fixed!"; } elseif ($removed[$rpm]) { $status = " Removed"; + } elseif ($prev && !$prev_failure[$rpm]) { + $status = " New!"; } echo "
  • $rpm$status
  • \n"; } -- cgit v1.2.1