Allows calling system_failure early where no role is set
Hanno Böck

Hanno Böck commited on 2020-05-02 12:03:00
Zeige 1 geänderte Dateien mit 3 Einfügungen und 0 Löschungen.

... ...
@@ -18,6 +18,9 @@ require_once("inc/security.php");
18 18
 
19 19
 function system_failure($reason)
20 20
 {
21
+    if (!isset($_SESSION['role'])) {
22
+        $_SESSION['role'] = ROLE_ANONYMOUS;
23
+    }
21 24
     input_error($reason);
22 25
     show_page();
23 26
     die();
24 27