don't recycle event ids in multicalls
This commit is contained in:
parent
102d325350
commit
70006e6cfc
1 changed files with 4 additions and 0 deletions
|
|
@ -344,6 +344,10 @@ class ModXMLRPCRequestHandler(object):
|
|||
else:
|
||||
results.append([result])
|
||||
|
||||
# subsequent calls should not recycle event ids
|
||||
if hasattr(context, 'event_id'):
|
||||
del context.event_id
|
||||
|
||||
return results
|
||||
|
||||
def handle_request(self,req):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue