From f908eded21919cfbbbd1009c63f1cffa316ea2b2 Mon Sep 17 00:00:00 2001 From: Russell Keith-Magee Date: Wed, 17 Jun 2009 13:01:40 +0000 Subject: [PATCH] Fixed #9268 -- Ensured that the next argument is passed on when previewing comments. Thanks to leanmeandonothingmachine for the patch. git-svn-id: http://code.djangoproject.com/svn/django/trunk@11019 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/contrib/comments/views/comments.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django/contrib/comments/views/comments.py b/django/contrib/comments/views/comments.py index ae3a672a80..89a3dd9bba 100644 --- a/django/contrib/comments/views/comments.py +++ b/django/contrib/comments/views/comments.py @@ -37,6 +37,9 @@ def post_comment(request, next=None): if not data.get('email', ''): data["email"] = request.user.email + # Check to see if the POST data overrides the view's next argument. + next = data.get("next", next) + # Look up the object we're trying to comment about ctype = data.get("content_type") object_pk = data.get("object_pk")