]> git.donarmstrong.com Git - debbugs.git/commitdiff
[project @ 2003-05-24 16:41:39 by joy]
authorjoy <>
Sat, 24 May 2003 23:41:39 +0000 (15:41 -0800)
committerjoy <>
Sat, 24 May 2003 23:41:39 +0000 (15:41 -0800)
revived $terse, sort-of

cgi/bugreport.cgi

index 43600b62e68fe1b2ac0047d8d22eb4fec0da30fd..79c80d4a3663b9ce410fee727d3e9d9259862f77 100755 (executable)
@@ -70,7 +70,7 @@ sub display_entity ($$$$\$\@) {
     $filename = '' unless defined $filename;
 
     if ($top) {
-       $$this .= htmlsanit($entity->stringify_header);
+       $$this .= htmlsanit($entity->stringify_header) unless ($terse);
        $$this .= "\n";
     }
 
@@ -110,7 +110,7 @@ sub display_entity ($$$$\$\@) {
            $$this .= "\n";
        }
     } else {
-       $$this .= htmlsanit($entity->bodyhandle->as_string);
+       $$this .= htmlsanit($entity->bodyhandle->as_string) unless ($terse);
     }
 }