diff options
author | endico%mozilla.org <> | 2001-03-09 10:49:41 +0100 |
---|---|---|
committer | endico%mozilla.org <> | 2001-03-09 10:49:41 +0100 |
commit | 84298cd109d6419321e4fa043442a46efea9f1fe (patch) | |
tree | be82d4bf1ef80b9bd507809e5a57eda1e6ce752a /duplicates.cgi | |
parent | e98760989ab69ac008f20d9cbaa26988bd17f2d9 (diff) | |
download | bugzilla-84298cd109d6419321e4fa043442a46efea9f1fe.tar.gz bugzilla-84298cd109d6419321e4fa043442a46efea9f1fe.tar.xz |
Patch from Jake <jake@acutex.net> 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.
Diffstat (limited to 'duplicates.cgi')
-rwxr-xr-x | duplicates.cgi | 1 |
1 files changed, 1 insertions, 0 deletions
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 "<tr>"; print '<td><center><A HREF="show_bug.cgi?id=' . $id . '">'; print $id . "</A></center></td>"; |