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 /xml.cgi | |
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 'xml.cgi')
-rwxr-xr-x | xml.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -45,7 +45,7 @@ my $exporter = $::COOKIE{"Bugzilla_login"} || undef; my @ids = split (/[, ]+/, $::FORM{'id'}); -print "Content-type: text/plain\n\n"; +print "Content-type: text/xml\n\n"; print Bug::XML_Header(Param("urlbase"), $::param{'version'}, Param("maintainer"), $exporter); foreach my $id (@ids) { |