diff options
author | Thomas Lange <code@nerdmind.de> | 2021-06-26 15:22:45 +0200 |
---|---|---|
committer | Thomas Lange <code@nerdmind.de> | 2021-06-26 15:22:45 +0200 |
commit | 871dab6a8071694884cc03e4612739ad1b34a7be (patch) | |
tree | 32e325d14a99762d25860b488883e0cfe1b937dd /admin/post/update.php | |
parent | 4b454db4f0de0c9547a5f20ac33cd7adfcc3b34f (diff) | |
download | blog-871dab6a8071694884cc03e4612739ad1b34a7be.tar.gz blog-871dab6a8071694884cc03e4612739ad1b34a7be.tar.xz blog-871dab6a8071694884cc03e4612739ad1b34a7be.zip |
Use const to define expressionless admin constants
Diffstat (limited to 'admin/post/update.php')
-rw-r--r-- | admin/post/update.php | 4 |
1 files changed, 2 insertions, 2 deletions
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 |