diff options
author | terry%mozilla.org <> | 2000-03-11 03:01:18 +0100 |
---|---|---|
committer | terry%mozilla.org <> | 2000-03-11 03:01:18 +0100 |
commit | 658f2f569dfb06448d7f45c370e7a1b468dd36a2 (patch) | |
tree | bab4951154992af006da72abab11c0f9f911fc0c /process_bug.cgi | |
parent | 1f9f6d7641c4fb0c9214133efd7ef03f682b158c (diff) | |
download | bugzilla-658f2f569dfb06448d7f45c370e7a1b468dd36a2.tar.gz bugzilla-658f2f569dfb06448d7f45c370e7a1b468dd36a2.tar.xz |
Italicize the "Additional Comments From" stuff, so that you can tell
the difference between new comments and people copying stuff in from
old comments.
Diffstat (limited to 'process_bug.cgi')
-rwxr-xr-x | process_bug.cgi | 8 |
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"; |