Commit ae7e30b4 authored by Vincent Pelletier's avatar Vincent Pelletier

Fix parameter name. Fixes a bug in which a message could be validated even if...

Fix parameter name. Fixes a bug in which a message could be validated even if its date was set in the future.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@25256 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 5bcd63aa
......@@ -603,7 +603,7 @@ class SQLDict(RAMDict, SQLBase):
readMessageList = getattr(activity_tool, 'SQLDict_readMessageList', None)
if readMessageList is not None:
result = readMessageList(path=None, method_id=None, processing_node=None,
to_processing_date=None, include_processing=include_processing)
to_date=None, include_processing=include_processing)
for line in result:
m = self.loadMessage(line.message, uid = line.uid)
m.processing_node = line.processing_node
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment