From 83c2b67cba835242b84839b470442bd2bab1c53d Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sun, 10 Aug 2008 08:47:30 -0700 Subject: [PATCH] * add missing span elements --- templates/en_US/cgi/short_bug_status.tmpl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates/en_US/cgi/short_bug_status.tmpl b/templates/en_US/cgi/short_bug_status.tmpl index 0b8e49f3..15ba2d00 100644 --- a/templates/en_US/cgi/short_bug_status.tmpl +++ b/templates/en_US/cgi/short_bug_status.tmpl @@ -99,12 +99,12 @@ }{ my $output = ''; my $days = $status{archive_days}; if ($days >= 0 and defined $status{location} and $status{location} ne 'archive') { - $output .= ";\nCan be archived" . + $output .= "Can be archived" . ( $days == 0 ? " today" : $days == 1 ? " in $days day" : " in $days days" ) . - ""; + ";\n"; } elsif (defined $status{location} and $status{location} eq 'archived') { - $output .= ";\nArchived."; + $output .= "Archived;\n"; } $output; }{ my $output = ''; -- 2.39.5