diff options
author | Thomas Lange <code@nerdmind.de> | 2017-04-19 23:27:24 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2017-04-19 23:27:24 +0200 |
commit | 1ab7ed73b0ea9d1f8597cf9b87bf272a7e6b99e6 (patch) | |
tree | 45f480a8ed8267489ad62f12c486e7ab16c748ce /admin/user | |
parent | 772f4ebd5d9b22fdfad044a42d4ab9f16cee925b (diff) | |
download | blog-1ab7ed73b0ea9d1f8597cf9b87bf272a7e6b99e6.tar.gz blog-1ab7ed73b0ea9d1f8597cf9b87bf272a7e6b99e6.tar.xz blog-1ab7ed73b0ea9d1f8597cf9b87bf272a7e6b99e6.zip |
Comments added and unnecessary "abs" function calls removed.
Diffstat (limited to 'admin/user')
-rw-r--r-- | admin/user/index.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/admin/user/index.php b/admin/user/index.php index 8631ac9..ca4dcab 100644 --- a/admin/user/index.php +++ b/admin/user/index.php @@ -10,13 +10,16 @@ define('AUTHENTICATION', TRUE); #=============================================================================== require '../../core/application.php'; +#=============================================================================== +# Pagination +#=============================================================================== $site_size = Application::get('POST.LIST_SIZE'); $site_sort = Application::get('POST.LIST_SORT'); $lastSite = ceil($Database->query(sprintf('SELECT COUNT(id) FROM %s', User\Attribute::TABLE))->fetchColumn() / $site_size); $currentSite = HTTP::GET('site') ?? 1; -$currentSite = abs(intval($currentSite)); +$currentSite = intval($currentSite); if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) { Application::error404(); |