1
0
Fork 0
mirror of https://gitlab.com/SIGBUS/nyaa.git synced 2024-06-17 06:23:12 +00:00

search: allow admins to ignore the max page limit (#589)

This commit is contained in:
Nicolas F 2019-10-30 03:16:14 +01:00 committed by Arylide
parent 5da7635164
commit 611f0c5706

View file

@ -379,7 +379,7 @@ def search_db(term='', user=None, sort='id', order='desc', category='0_0',
same_user = logged_in_user.id == user same_user = logged_in_user.id == user
# Logged in users should always be able to view their full listing. # Logged in users should always be able to view their full listing.
if same_user: if same_user or admin:
MAX_PAGES = 0 MAX_PAGES = 0
if MAX_PAGES and page > MAX_PAGES: if MAX_PAGES and page > MAX_PAGES: