Skip to content
Snippets Groups Projects
Commit fdc879042414 authored by Jim Hague's avatar Jim Hague
Browse files

bugzilla: stop bugs always being marked as fixed in xmlrpc (issue3484)

Bugs should only be marked fixed if the comment parser gives them the
fixed state. xmlrpc+email got this right, xmlrpc screwed it up.
parent 00e1e40d709c
No related branches found
No related tags found
No related merge requests found
......@@ -654,8 +654,9 @@
if self.bzvermajor >= 4:
args['ids'] = [bugid]
args['comment'] = {'body' : text}
args['status'] = self.fixstatus
args['resolution'] = self.fixresolution
if 'fix' in newstate:
args['status'] = self.fixstatus
args['resolution'] = self.fixresolution
self.bzproxy.Bug.update(args)
else:
if 'fix' in newstate:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment