summaryrefslogtreecommitdiffstats
path: root/process_bug.cgi
diff options
context:
space:
mode:
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-xprocess_bug.cgi8
1 files changed, 4 insertions, 4 deletions
diff --git a/process_bug.cgi b/process_bug.cgi
index 0e11f16cc..ac8f1a395 100755
--- a/process_bug.cgi
+++ b/process_bug.cgi
@@ -609,14 +609,14 @@ The changes made were:
<p>
";
DumpBugActivity($id, $delta_ts);
- my $longdesc = GetLongDescription($id);
+ my $longdesc = GetLongDescriptionAsHTML($id);
my $longchanged = 0;
if (length($longdesc) > $::FORM{'longdesclength'}) {
$longchanged = 1;
- print "<P>Added text to the long description:<blockquote><pre>";
- print html_quote(substr($longdesc, $::FORM{'longdesclength'}));
- print "</pre></blockquote>\n";
+ print "<P>Added text to the long description:<blockquote>";
+ print substr($longdesc, $::FORM{'longdesclength'});
+ print "</blockquote>\n";
}
SendSQL("unlock tables");
print "You have the following choices: <ul>\n";