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
1 changed files with 1 additions and 1 deletions

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
# Logged in users should always be able to view their full listing.
if same_user:
if same_user or admin:
MAX_PAGES = 0
if MAX_PAGES and page > MAX_PAGES: