my-account: fixed pagination of unread messages
This commit is contained in:
parent
23a77bc66d
commit
2ee24ea13c
1 changed files with 3 additions and 1 deletions
|
|
@ -73,7 +73,9 @@ class MyAccountNotificationsView(BaseAppView):
|
|||
'page': page_num
|
||||
}
|
||||
_query = self.request.GET.mixed()
|
||||
query_params.update(_query)
|
||||
_query.update(query_params)
|
||||
query_params = _query
|
||||
|
||||
return self.request.current_route_path(_query=query_params)
|
||||
|
||||
c.notifications = SqlPage(notifications, page=p, items_per_page=10,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue