Commit 7523174b authored by Tristan Cavelier's avatar Tristan Cavelier

erp5_post: do not call edit in addition to newContent

parent d1eb52cd
......@@ -2,7 +2,6 @@ portal = context.getPortalObject()
# create an HTML Post
post_module = portal.post_module
post = post_module.newContent(portal_type='HTML Post')
# get the related object
object_list = portal.portal_catalog(relative_url=follow_up) # with id keyword, this function will return a sequence data type which contains one element.
......@@ -21,7 +20,10 @@ post_edit_kw = {
if predecessor is not None:
predecessor_value, = portal.portal_catalog(relative_url=predecessor)
post_edit_kw["predecessor_value"] = predecessor_value.getObject()
post.edit(**post_edit_kw)
post = post_module.newContent(
portal_type='HTML Post',
**post_edit_kw
)
post.publish()
# We need to reindex the object on server. So the page will get the post which
......
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