From 184a0afb64cc0bb105abea431bdbc8a5f1b0999c Mon Sep 17 00:00:00 2001 From: leidel Date: Tue, 5 Aug 2008 00:37:29 +0000 Subject: [PATCH] Fixed #12, updated middleware to access request variable with request.REQUEST dict, thanks jphalip git-svn-id: https://django-pagination.googlecode.com/svn/trunk@24 7f1efe38-554e-0410-b69d-834cb44da2d5 --- pagination/middleware.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pagination/middleware.py b/pagination/middleware.py index b99a7e3..0bab767 100644 --- a/pagination/middleware.py +++ b/pagination/middleware.py @@ -5,6 +5,6 @@ class PaginationMiddleware(object): """ def process_request(self, request): try: - request.page = int(request['page']) + request.page = int(request.REQUEST['page']) except (KeyError, ValueError): request.page = 1 \ No newline at end of file -- 2.20.1