aboutsummaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorThomas Lange <code@nerdmind.de>2021-06-21 22:47:06 +0200
committerThomas Lange <code@nerdmind.de>2021-06-21 22:47:06 +0200
commit7937df540b7d70b2bb87797442d0a0a0df197133 (patch)
tree2d72f3bc43bc5c1a147f6d85f5448762243ddeed /admin
parent0b15a4d76b7b9934f70319fc2132b91865fe58d1 (diff)
downloadblog-7937df540b7d70b2bb87797442d0a0a0df197133.tar.gz
blog-7937df540b7d70b2bb87797442d0a0a0df197133.tar.xz
blog-7937df540b7d70b2bb87797442d0a0a0df197133.zip
Fix prefixes for ADMIN.USER.LIST_* config options
Diffstat (limited to 'admin')
-rw-r--r--admin/user/index.php4
1 files changed, 2 insertions, 2 deletions
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);