diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-21 22:47:06 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-21 22:47:06 +0200 |
commit | 7937df540b7d70b2bb87797442d0a0a0df197133 (patch) | |
tree | 2d72f3bc43bc5c1a147f6d85f5448762243ddeed | |
parent | 0b15a4d76b7b9934f70319fc2132b91865fe58d1 (diff) | |
download | blog-7937df540b7d70b2bb87797442d0a0a0df197133.tar.gz blog-7937df540b7d70b2bb87797442d0a0a0df197133.tar.xz blog-7937df540b7d70b2bb87797442d0a0a0df197133.zip |
Fix prefixes for ADMIN.USER.LIST_* config options
-rw-r--r-- | admin/user/index.php | 4 |
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); |