From 78db47e53f69e20425ab8647d1d4380eadac3597 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 9 Aug 2008 14:09:50 -0700 Subject: [PATCH] * Support summary in the buginfo bit of the bugreport --- templates/en_US/cgi/bugreport_buginfo.tmpl | 5 +++++ 1 file changed, 5 insertions(+) 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; } -- 2.39.5