##// END OF EJS Templates
my-account: fixed pagination of unread messages
super-admin -
r5115:e7219b77 default
parent child Browse files
Show More
@@ -73,7 +73,9 b' class MyAccountNotificationsView(BaseApp'
73 73 'page': page_num
74 74 }
75 75 _query = self.request.GET.mixed()
76 query_params.update(_query)
76 _query.update(query_params)
77 query_params = _query
78
77 79 return self.request.current_route_path(_query=query_params)
78 80
79 81 c.notifications = SqlPage(notifications, page=p, items_per_page=10,
General Comments 0
You need to be logged in to leave comments. Login now