joashivanmoodley / django-pagination

Automatically exported from code.google.com/p/django-pagination
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

pagination.middleware.PaginationMiddleware cause my nostest failure #24

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
I sovled the problem by change pagination.middleware.PaginationMiddleware
as follows:

old code
--------
    request.page = int(request.REQUEST['page'])

new code
--------
    request.page = int(request.GET['page'])

Original issue reported on code.google.com by fangzhou...@gmail.com on 22 Oct 2008 at 2:47

GoogleCodeExporter commented 8 years ago
This works fine for me.  Are you running the latest version of Django trunk?

Original comment by flo...@gmail.com on 24 Oct 2008 at 7:53