##// 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 if self.bzvermajor >= 4:
654 if self.bzvermajor >= 4:
655 args['ids'] = [bugid]
655 args['ids'] = [bugid]
656 args['comment'] = {'body' : text}
656 args['comment'] = {'body' : text}
657 args['status'] = self.fixstatus
657 if 'fix' in newstate:
658 args['resolution'] = self.fixresolution
658 args['status'] = self.fixstatus
659 args['resolution'] = self.fixresolution
659 self.bzproxy.Bug.update(args)
660 self.bzproxy.Bug.update(args)
660 else:
661 else:
661 if 'fix' in newstate:
662 if 'fix' in newstate:
General Comments 0
You need to be logged in to leave comments. Login now