Commit 94587836 authored by Aurel's avatar Aurel

fix use of tid in answer_transaction_information


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@189 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 9202e523
......@@ -464,10 +464,10 @@ class ClientEventHandler(EventHandler):
app = self.app
# transaction information are returned as a dict
info = {}
info['time'] = TimeStamp(p64(long(tid))).timeTime()
info['time'] = TimeStamp(tid).timeTime()
info['user_name'] = user
info['description'] = desc
info['id'] = p64(long(tid))
info['id'] = tid
info['oids'] = oid_list
app.local_var.txn_info = info
else:
......
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