no more recursive came_from redirection after logged_in

This commit is contained in:
Huub Bouma 2012-04-12 13:06:05 +02:00
parent 38332e557d
commit c9848bebfe
1 changed files with 4 additions and 2 deletions

View File

@ -99,7 +99,8 @@ class DeleteComment(BrowserView):
_("Comment deleted."),
type="info")
came_from = self.context.REQUEST.HTTP_REFERER
if len(came_from) == 0:
# 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:
came_from = content_object.absolute_url()
return self.context.REQUEST.RESPONSE.redirect(came_from)
@ -138,7 +139,8 @@ class PublishComment(BrowserView):
_("Comment approved."),
type="info")
came_from = self.context.REQUEST.HTTP_REFERER
if len(came_from) == 0:
# 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:
came_from = content_object.absolute_url()
return self.context.REQUEST.RESPONSE.redirect(came_from)