##// END OF EJS Templates
bugzilla: stop bugs always being marked as fixed in xmlrpc (issue3484)...
Jim Hague -
r16876:fdc87904 stable
parent child Browse files
Show More
@@ -654,8 +654,9 b' class bzxmlrpc(bzaccess):'
654 654 if self.bzvermajor >= 4:
655 655 args['ids'] = [bugid]
656 656 args['comment'] = {'body' : text}
657 args['status'] = self.fixstatus
658 args['resolution'] = self.fixresolution
657 if 'fix' in newstate:
658 args['status'] = self.fixstatus
659 args['resolution'] = self.fixresolution
659 660 self.bzproxy.Bug.update(args)
660 661 else:
661 662 if 'fix' in newstate:
General Comments 0
You need to be logged in to leave comments. Login now