Commit b70b98ec68217788fefe937fd3c86ee72f61d967

Authored by Zambom
1 parent aa099162

Adjusting mural pagination problems

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
mural/templatetags/comments_list.py
@@ -18,7 +18,7 @@ def comments_list(request, post): @@ -18,7 +18,7 @@ def comments_list(request, post):
18 paginator = Paginator(comments, 5) 18 paginator = Paginator(comments, 5)
19 19
20 try: 20 try:
21 - page_number = int(request.GET.get('page', 1)) 21 + page_number = 1
22 except ValueError: 22 except ValueError:
23 raise Http404 23 raise Http404
24 24