aboutsummaryrefslogtreecommitdiffstats
path: root/core/namespace/Application.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/namespace/Application.php')
-rw-r--r--core/namespace/Application.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/namespace/Application.php b/core/namespace/Application.php
index fa5e0a9..8346248 100644
--- a/core/namespace/Application.php
+++ b/core/namespace/Application.php
@@ -116,18 +116,18 @@ class Application {
# Return unique CSRF token for the current session
#===============================================================================
public static function getSecurityToken(): string {
- if(!isset($_SESSION['token'])) {
- $_SESSION['token'] = bin2hex(random_bytes(16));
+ if(!isset($_SESSION['CSRF_TOKEN'])) {
+ $_SESSION['CSRF_TOKEN'] = bin2hex(random_bytes(16));
}
- return $_SESSION['token'];
+ return $_SESSION['CSRF_TOKEN'];
}
#===============================================================================
# Return boolean if successfully authenticated
#===============================================================================
public static function isAuthenticated(): bool {
- return isset($_SESSION['auth']);
+ return isset($_SESSION['USER_ID']);
}
#===============================================================================