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
This commit is contained in:
cyeh%bluemartini.com 2001-02-26 23:46:01 +00:00
parent 4e9aa4410a
commit 7b0711915d
2 changed files with 4 additions and 4 deletions

View File

@ -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";

View File

@ -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";