summaryrefslogtreecommitdiffstats
path: root/xml.cgi
diff options
context:
space:
mode:
authorbbaetz%student.usyd.edu.au <>2002-04-27 15:25:41 +0200
committerbbaetz%student.usyd.edu.au <>2002-04-27 15:25:41 +0200
commit48fcdfb586c8ff4213ab05dcd849c3e11bb9740c (patch)
treefe1437b14d8083b76939edb3ddc0b6dc18d7b742 /xml.cgi
parent8d97865049b228736912bbf64620987484bf697a (diff)
downloadbugzilla-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-xxml.cgi2
1 files changed, 1 insertions, 1 deletions
diff --git a/xml.cgi b/xml.cgi
index 8356c3d89..f35a13cd9 100755
--- a/xml.cgi
+++ b/xml.cgi
@@ -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) {