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