diff options
Diffstat (limited to 'admin/user/index.php')
-rw-r--r-- | admin/user/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/user/index.php b/admin/user/index.php index d2bee8d..fe7f1ab 100644 --- a/admin/user/index.php +++ b/admin/user/index.php @@ -2,8 +2,8 @@ #=============================================================================== # DEFINE: Administration #=============================================================================== -const ADMINISTRATION = TRUE; -const AUTHENTICATION = TRUE; +const ADMINISTRATION = true; +const AUTHENTICATION = true; #=============================================================================== # INCLUDE: Initialization @@ -34,7 +34,7 @@ if(!$count) { HTTP::redirect(Application::getAdminURL('user/insert.php')); } -if($currentSite < 1 OR ($currentSite > $lastSite AND $lastSite > 0)) { +if($currentSite < 1 or ($currentSite > $lastSite and $lastSite > 0)) { Application::error404(); } |