From e6460e41348e5113761d5fd831d1179741ce2e9e Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 15 Sep 2007 20:00:14 +0000 Subject: [PATCH] Changed set_language() change from [6320] to use request.REQUEST, which is shorter git-svn-id: http://code.djangoproject.com/svn/django/trunk@6324 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/views/i18n.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/django/views/i18n.py b/django/views/i18n.py index e2459cf957..cccec13941 100644 --- a/django/views/i18n.py +++ b/django/views/i18n.py @@ -16,9 +16,7 @@ def set_language(request): redirect to the page in the request (the 'next' parameter) without changing any state. """ - next = request.POST.get('next', None) - if not next: - next = request.GET.get('next', None) + next = request.REQUEST.get('next', None) if not next: next = request.META.get('HTTP_REFERER', None) if not next: