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 18 paginator = Paginator(comments, 5)
19 19  
20 20 try:
21   - page_number = int(request.GET.get('page', 1))
  21 + page_number = 1
22 22 except ValueError:
23 23 raise Http404
24 24  
... ...