diff options
author | endico%mozilla.org <> | 2000-06-12 15:52:41 +0200 |
---|---|---|
committer | endico%mozilla.org <> | 2000-06-12 15:52:41 +0200 |
commit | 7b16c745ab0e7056e712109d7688281124c2b49b (patch) | |
tree | 6ccbee0e9a74740e848ce88a3f8d28fffb4799bf /xml.cgi | |
parent | 9e45f64b0cef38af323075b9405dd7dcad9eb5f4 (diff) | |
download | bugzilla-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-x | xml.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |