prevent infinite request for confirmation (plone.protect)

This commit is contained in:
Katja Suess 2019-11-22 19:47:12 +01:00
parent 8bd1992a7f
commit 1e5951101f
1 changed files with 2 additions and 1 deletions

View File

@ -228,7 +228,8 @@ class PublishComment(BrowserView):
# if the referrer already has a came_from in it, don't redirect back
if (len(came_from) == 0 or 'came_from=' in came_from or
not getToolByName(
content_object, 'portal_url').isURLInPortal(came_from)):
content_object, 'portal_url').isURLInPortal(came_from) or
'@@confirm-action' in came_from):
came_from = content_object.absolute_url()
return self.context.REQUEST.RESPONSE.redirect(came_from)