summaryrefslogtreecommitdiffstats
path: root/Bug.pm
diff options
context:
space:
mode:
authorcyeh%bluemartini.com <>2001-02-27 08:46:01 +0100
committercyeh%bluemartini.com <>2001-02-27 08:46:01 +0100
commit5a38e63e132571b38aff54c6605ec9c1d881aba5 (patch)
tree8ea61eec1f94e830d6d3806ef6b272dab312cca9 /Bug.pm
parent809e555be83513eb2965881a32f44a0ba855a566 (diff)
downloadbugzilla-5a38e63e132571b38aff54c6605ec9c1d881aba5.tar.gz
bugzilla-5a38e63e132571b38aff54c6605ec9c1d881aba5.tar.xz
fix for 47726: Doesn't display properly in IE5.5 because bug url & are not encoded
patch submitted by rufus@nonstuff.de (Rufus) call QuoteXMLChars on bug_file_loc and attachment desc
Diffstat (limited to 'Bug.pm')
-rwxr-xr-xBug.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bug.pm b/Bug.pm
index 1c51af1a1..76ea56156 100755
--- a/Bug.pm
+++ b/Bug.pm
@@ -261,7 +261,7 @@ sub emitXML {
"creation_ts", "qa_contact", "op_sys", "resolution", "bug_file_loc",
"short_desc", "keywords", "status_whiteboard") {
if ($self->{$field}) {
- $xml .= " <$field>" . $self->{$field} . "</$field>\n";
+ $xml .= " <$field>" . QuoteXMLChars($self->{$field}) . "</$field>\n";
}
}
@@ -292,7 +292,7 @@ sub emitXML {
$xml .= " <attachid>" . $self->{'attachments'}[$i]->{'attachid'}
. "</attachid>\n";
$xml .= " <date>" . $self->{'attachments'}[$i]->{'date'} . "</date>\n";
- $xml .= " <desc>" . $self->{'attachments'}[$i]->{'desc'} . "</desc>\n";
+ $xml .= " <desc>" . QuoteXMLChars($self->{'attachments'}[$i]->{'desc'}) . "</desc>\n";
# $xml .= " <type>" . $self->{'attachments'}[$i]->{'type'} . "</type>\n";
# $xml .= " <data>" . $self->{'attachments'}[$i]->{'data'} . "</data>\n";
$xml .= " </attachment>\n";