From: Don Armstrong Date: Sat, 16 Jun 2007 20:48:00 +0000 (+0100) Subject: Bugs can be archived, instead of will be archived; allows running expire less than... X-Git-Tag: release/2.6.0~547^2~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=8e82c1825ab8e7400bbb80fbea5124a32b98dda7;p=debbugs.git Bugs can be archived, instead of will be archived; allows running expire less than daily --- diff --git a/cgi/pkgreport.cgi b/cgi/pkgreport.cgi index 8a3f300..a386770 100755 --- a/cgi/pkgreport.cgi +++ b/cgi/pkgreport.cgi @@ -651,7 +651,7 @@ sub pkg_htmlindexentrystatus { days_until => 1, ); if ($days >= 0 and defined $status{location} and $status{location} ne 'archive') { - $result .= ";\nWill be archived" . ( $days == 0 ? " today" : $days == 1 ? " in $days day" : " in $days days" ) . ""; + $result .= ";\nCan be archived" . ( $days == 0 ? " today" : $days == 1 ? " in $days day" : " in $days days" ) . ""; } }