diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-12-19 13:49:59 +0100 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-12-19 13:50:03 +0100 |
| commit | dc5620524b8ac5dcc91b74366c3cdf797140c0e1 (patch) | |
| tree | 1eb4c04d74a40f41f50f1fa04067f2eb3e02f6fa | |
| parent | 88843c7d726c4100c74e9ee227b7319f2d0f4e40 (diff) | |
use correct state value, re #1552
| -rw-r--r-- | lib/session/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/session/Manager.php b/lib/session/Manager.php index 60246b2..6c3c02e 100644 --- a/lib/session/Manager.php +++ b/lib/session/Manager.php @@ -16,7 +16,7 @@ class Manager { public const STATE_UNKNOWN = false; public const STATE_AUTHENTICATED = 'authenticated'; - public const STATE_NOBODY = 'authenticated'; + public const STATE_NOBODY = 'nobody'; protected array $options = [ 'name' => 'Seminar_Session', |
