diff options
Diffstat (limited to 'admin/index.php')
-rw-r--r-- | admin/index.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/admin/index.php b/admin/index.php index 09c126d..ca8bd5a 100644 --- a/admin/index.php +++ b/admin/index.php @@ -2,8 +2,8 @@ #=============================================================================== # DEFINE: Administration #=============================================================================== -const ADMINISTRATION = TRUE; -const AUTHENTICATION = TRUE; +const ADMINISTRATION = true; +const AUTHENTICATION = true; #=============================================================================== # INCLUDE: Initialization @@ -39,9 +39,9 @@ if($User = $UserRepository->getLast()) { #=============================================================================== $HomeTemplate = Template\Factory::build('home'); $HomeTemplate->set('LAST', [ - 'PAGE' => $PageItemTemplate ?? FALSE, - 'POST' => $PostItemTemplate ?? FALSE, - 'USER' => $UserItemTemplate ?? FALSE + 'PAGE' => $PageItemTemplate ?? false, + 'POST' => $PostItemTemplate ?? false, + 'USER' => $UserItemTemplate ?? false ]); $HomeTemplate->set('COUNT', [ |