From 7c6b5eebeb808f3e2cc89384a1dbae150bf1223a Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 16 Jun 2007 22:35:00 +0100 Subject: [PATCH] indicate when bugs are archived in the pkgreport.cgi output --- cgi/pkgreport.cgi | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cgi/pkgreport.cgi b/cgi/pkgreport.cgi index a386770..ed67c54 100755 --- a/cgi/pkgreport.cgi +++ b/cgi/pkgreport.cgi @@ -653,6 +653,9 @@ sub pkg_htmlindexentrystatus { if ($days >= 0 and defined $status{location} and $status{location} ne 'archive') { $result .= ";\nCan be archived" . ( $days == 0 ? " today" : $days == 1 ? " in $days day" : " in $days days" ) . ""; } + elsif (defined $status{location} and $status{location} eq 'archived') { + $result .= ";\nArchived."; + } } unless (length($status{done})) { -- 2.39.2