]> git.donarmstrong.com Git - debbugs.git/commitdiff
* add missing span elements
authorDon Armstrong <don@donarmstrong.com>
Sun, 10 Aug 2008 15:47:30 +0000 (08:47 -0700)
committerDon Armstrong <don@donarmstrong.com>
Sun, 10 Aug 2008 15:47:30 +0000 (08:47 -0700)
templates/en_US/cgi/short_bug_status.tmpl

index 0b8e49f3ccd6e71df0998f0db5639e9a85c54b9d..15ba2d0084c1b9ebe4847c8e7f5b9aae8f1c74ef 100644 (file)
 }{ my $output = '';
    my $days = $status{archive_days};
    if ($days >= 0 and defined $status{location} and $status{location} ne 'archive') {
-       $output .= ";\n<strong>Can be archived" .
+       $output .= "<span><strong>Can be archived" .
           ( $days == 0 ? " today" : $days == 1 ? " in $days day" : " in $days days" ) .
-              "</strong>";
+              "</strong></span>;\n";
    }
    elsif (defined $status{location} and $status{location} eq 'archived') {
-       $output .= ";\n<strong>Archived.</strong>";
+       $output .= "<span><strong>Archived</strong></span>;\n";
    }
    $output;
 }{ my $output = '';