From 871dab6a8071694884cc03e4612739ad1b34a7be Mon Sep 17 00:00:00 2001
From: Thomas Lange <code@nerdmind.de>
Date: Sat, 26 Jun 2021 15:22:45 +0200
Subject: Use const to define expressionless admin constants

---
 admin/post/update.php | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

(limited to 'admin/post/update.php')

diff --git a/admin/post/update.php b/admin/post/update.php
index 9091e59..3e4d0ab 100644
--- a/admin/post/update.php
+++ b/admin/post/update.php
@@ -2,8 +2,8 @@
 #===============================================================================
 # DEFINE: Administration
 #===============================================================================
-define('ADMINISTRATION', TRUE);
-define('AUTHENTICATION', TRUE);
+const ADMINISTRATION = TRUE;
+const AUTHENTICATION = TRUE;
 
 #===============================================================================
 # INCLUDE: Initialization
-- 
cgit v1.2.3