From 84298cd109d6419321e4fa043442a46efea9f1fe Mon Sep 17 00:00:00 2001 From: "endico%mozilla.org" <> Date: Fri, 9 Mar 2001 09:49:41 +0000 Subject: Patch from Jake for bugs 22041 and 25693 which had the same problem. HTML meta characters in the summary were not being quoted before being printed to html. --- duplicates.cgi | 1 + 1 file changed, 1 insertion(+) (limited to 'duplicates.cgi') diff --git a/duplicates.cgi b/duplicates.cgi index a45da6bb2..c9c692ca3 100755 --- a/duplicates.cgi +++ b/duplicates.cgi @@ -142,6 +142,7 @@ foreach (@sortedcount) SendSQL("SELECT component, bug_severity, op_sys, target_milestone, short_desc FROM " . "bugs WHERE bug_id = $id"); my ($component, $severity, $op_sys, $milestone, $summary) = FetchSQLData(); + $summary = html_quote($summary); print ""; print '
'; print $id . "
"; -- cgit v1.2.3-24-g4f1b