summaryrefslogtreecommitdiffstats
path: root/xml.cgi
diff options
context:
space:
mode:
authorendico%mozilla.org <>2000-06-12 15:52:41 +0200
committerendico%mozilla.org <>2000-06-12 15:52:41 +0200
commit7b16c745ab0e7056e712109d7688281124c2b49b (patch)
tree6ccbee0e9a74740e848ce88a3f8d28fffb4799bf /xml.cgi
parent9e45f64b0cef38af323075b9405dd7dcad9eb5f4 (diff)
downloadbugzilla-7b16c745ab0e7056e712109d7688281124c2b49b.tar.gz
bugzilla-7b16c745ab0e7056e712109d7688281124c2b49b.tar.xz
'Bug' data was in a global var. different bugs were sharing this and overwritig each other.
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 9cfe314ca..51093890e 100755
--- a/xml.cgi
+++ b/xml.cgi
@@ -53,6 +53,6 @@ print Bug::XML_Header( Param("urlbase"), $::param{'version'},
foreach my $id (@ids) {
my $bug = new Bug($id, $::userid);
print $bug->emitXML;
-$bug->bug_status("BLAH");
}
+
print Bug::XML_Footer;