Commit ec461eb9 authored by Jim Fulton's avatar Jim Fulton

Fixed a bug in a recent change that fetched the id of a new

object to fetch the object.
parent 0faf10bc
......@@ -539,8 +539,9 @@ class ZClass( Base
except: durl=REQUEST['URL3']
RESPONSE.redirect(durl+'/manage_workspace')
else:
# get id from obj since btreefolder now picks a random id for IOBtreeFolders
return folder._getOb(i.id)
# An object is not guarenteed to have the id we passed in.
id = i.getId()
return folder._getOb(id)
index_html=createInObjectManager
......
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