From 1885150ec2f834ac6eca117e2d422cba518d30f3 Mon Sep 17 00:00:00 2001 From: "terry%netscape.com" <> Date: Thu, 25 Mar 1999 08:14:26 +0000 Subject: Quote URLs and email addresses in the long description of bugs. --- bug_form.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bug_form.pl') diff --git a/bug_form.pl b/bug_form.pl index cd2ff0e33..e8bc30ec3 100644 --- a/bug_form.pl +++ b/bug_form.pl @@ -21,6 +21,8 @@ use diagnostics; use strict; +use HTML::FromText; + quietly_check_login(); my $query = " @@ -306,7 +308,9 @@ print " Opened: $bug{'creation_ts'}
-" . html_quote($bug{'long_desc'}) . "
+";
+print text2html($bug{'long_desc'}, email=>1, urls=>1);
+print "
 

\n"; -- cgit v1.2.3-24-g4f1b