]> git.donarmstrong.com Git - debbugs.git/commitdiff
* Support summary in the buginfo bit of the bugreport
authorDon Armstrong <don@donarmstrong.com>
Sat, 9 Aug 2008 21:09:50 +0000 (14:09 -0700)
committerDon Armstrong <don@donarmstrong.com>
Sat, 9 Aug 2008 21:09:50 +0000 (14:09 -0700)
templates/en_US/cgi/bugreport_buginfo.tmpl

index 6bd16e084676beab2ba0be041c06a7768552f7cc..17f0004123ed2bfe608f9a85ce7493aa6e515f78 100644 (file)
@@ -59,4 +59,9 @@
      $output .= q(<p>Bug is archived. No further changes may be made.<p>)
   }
   $output
+}{ my $output = '';
+  if (exists $status{summary} and defined $status{summary} and length $status{summary}) {
+     $output .= q(<p>).html_escape($status{summary}).q(</p>);
+  }
+  $output;
 }</div>