From 7937df540b7d70b2bb87797442d0a0a0df197133 Mon Sep 17 00:00:00 2001 From: Thomas Lange Date: Mon, 21 Jun 2021 22:47:06 +0200 Subject: Fix prefixes for ADMIN.USER.LIST_* config options --- admin/user/index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'admin') diff --git a/admin/user/index.php b/admin/user/index.php index f7e639b..8ae4f1a 100644 --- a/admin/user/index.php +++ b/admin/user/index.php @@ -13,8 +13,8 @@ require '../../core/application.php'; #=============================================================================== # Pagination #=============================================================================== -$site_size = Application::get('ADMIN.POST.LIST_SIZE'); -$site_sort = Application::get('ADMIN.POST.LIST_SORT'); +$site_size = Application::get('ADMIN.USER.LIST_SIZE'); +$site_sort = Application::get('ADMIN.USER.LIST_SORT'); $lastSite = ceil($Database->query(sprintf('SELECT COUNT(id) FROM %s', User\Attribute::TABLE))->fetchColumn() / $site_size); -- cgit v1.2.3