From: leidel Date: Tue, 5 Aug 2008 00:37:29 +0000 (+0000) Subject: Fixed #12, updated middleware to access request variable with request.REQUEST dict... X-Git-Tag: 1.0.6~33 X-Git-Url: https://git.mdrn.pl/django-pagination.git/commitdiff_plain/184a0afb64cc0bb105abea431bdbc8a5f1b0999c 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 --- 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