diff options
author | bbaetz%student.usyd.edu.au <> | 2002-04-27 15:25:41 +0200 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-04-27 15:25:41 +0200 |
commit | 48fcdfb586c8ff4213ab05dcd849c3e11bb9740c (patch) | |
tree | fe1437b14d8083b76939edb3ddc0b6dc18d7b742 /Bugzilla | |
parent | 8d97865049b228736912bbf64620987484bf697a (diff) | |
download | bugzilla-48fcdfb586c8ff4213ab05dcd849c3e11bb9740c.tar.gz bugzilla-48fcdfb586c8ff4213ab05dcd849c3e11bb9740c.tar.xz |
Bug 105960 - xml.cgi has wrong content type, and should be standalone
r=caillon x2
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 5ae83d295..7ac2bd101 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -325,7 +325,7 @@ sub XML_Header { my ($urlbase, $version, $maintainer, $exporter) = (@_); my $xml; - $xml = "<?xml version=\"1.0\" standalone=\"no\"?>\n"; + $xml = "<?xml version=\"1.0\" standalone=\"yes\"?>\n"; $xml .= "<!DOCTYPE bugzilla SYSTEM \"$urlbase"; if (! ($urlbase =~ /.+\/$/)) { $xml .= "/"; |