From: Don Armstrong Date: Sat, 9 Aug 2008 21:09:50 +0000 (-0700) Subject: * Support summary in the buginfo bit of the bugreport X-Git-Tag: release/2.6.0~484^2~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=78db47e53f69e20425ab8647d1d4380eadac3597;p=debbugs.git * Support summary in the buginfo bit of the bugreport --- diff --git a/templates/en_US/cgi/bugreport_buginfo.tmpl b/templates/en_US/cgi/bugreport_buginfo.tmpl index 6bd16e08..17f00041 100644 --- a/templates/en_US/cgi/bugreport_buginfo.tmpl +++ b/templates/en_US/cgi/bugreport_buginfo.tmpl @@ -59,4 +59,9 @@ $output .= q(

Bug is archived. No further changes may be made.

) } $output +}{ my $output = ''; + if (exists $status{summary} and defined $status{summary} and length $status{summary}) { + $output .= q(

).html_escape($status{summary}).q(

); + } + $output; }