From: joy <> Date: Sat, 2 Feb 2002 03:04:31 +0000 (-0800) Subject: [project @ 2002-02-01 19:04:31 by joy] X-Git-Tag: release/2.6.0~1070 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=26ff02493a759a696dc2f1b649dae4b0409eb7d1;p=debbugs.git [project @ 2002-02-01 19:04:31 by joy] link to the submitter's web page, patch from Matt Kraai --- diff --git a/cgi/bugreport.cgi b/cgi/bugreport.cgi index 0fd8ba38..7438a2f8 100755 --- a/cgi/bugreport.cgi +++ b/cgi/bugreport.cgi @@ -59,7 +59,8 @@ $indexentry .= $showseverity; $indexentry .= "Package: " .htmlsanit($status{package}).";\n"; -$indexentry .= "Reported by: ".htmlsanit($status{originator}); +$indexentry .= "Reported by: " . htmlsanit($status{originator}) . ""; $indexentry .= ";\nTags: " . htmlsanit(join(", ", sort(split(/\s+/, $status{tags})))) . "" diff --git a/cgi/common.pl b/cgi/common.pl index 4ab70d5e..b9b9a786 100644 --- a/cgi/common.pl +++ b/cgi/common.pl @@ -131,7 +131,8 @@ sub htmlindexentrystatus { . "" . htmlsanit($status{"package"}) . ";\n" if (length($status{"package"})); $result .= $showseverity; - $result .= "Reported by: " . htmlsanit($status{originator}); + $result .= "Reported by: " . htmlsanit($status{originator}) . ""; $result .= ";\nTags: " . htmlsanit(join(", ", sort(split(/\s+/, $status{tags})))) . ""