]> git.donarmstrong.com Git - debbugs.git/commitdiff
add missing space and title summary
authorDon Armstrong <don@donarmstrong.com>
Sun, 10 Aug 2008 23:33:29 +0000 (16:33 -0700)
committerDon Armstrong <don@donarmstrong.com>
Sun, 10 Aug 2008 23:33:29 +0000 (16:33 -0700)
Debbugs/Control.pm
templates/en_US/cgi/bugreport_buginfo.tmpl

index d99bbf8c945941e9233326ec3389f3a6a5f1e126..418efede8277d4fa2cf32d5b68f0562c9efe7969 100644 (file)
@@ -493,7 +493,7 @@ sub summary {
                   }
              }
              next if $in_pseudoheaders;
-             $paragraph .= $line ."\n";
+             $paragraph .= $line ." \n";
         }
         print {$debug} "Summary is going to be '$paragraph'\n";
         $summary = $paragraph;
index 17f0004123ed2bfe608f9a85ce7493aa6e515f78..2e9b1825b7b68410a1f78818756c982735b6a1f1 100644 (file)
@@ -61,7 +61,7 @@
   $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 .= q(<p>Summary: ).html_escape($status{summary}).q(</p>);
   }
   $output;
 }</div>