Commit db89895c authored by Yoshinori Okuji's avatar Yoshinori Okuji

Fix more bugs regarding setting acquisition wrappers.


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@3928 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent c35f3b92
......@@ -423,7 +423,7 @@ class XMLMatrix(Folder):
new_id = old_id + appended_id
cell.isIndexable = 0
cell.id = new_id
self._setObject(new_id, cell)
self._setObject(new_id, aq_base(cell))
self._delObject(old_id)
cell.isIndexable = 1
cell.reindexObject()
......@@ -437,7 +437,7 @@ class XMLMatrix(Folder):
new_id = old_id[:-removed_id_len]
cell.isIndexable = 0
cell.id = new_id
self._setObject(new_id, cell)
self._setObject(new_id, aq_base(cell))
self._delObject(old_id)
cell.isIndexable = 1
cell.reindexObject()
......
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