Improve missing token check
Avoid "E_NOTICE (8) (classes/userhelper.php:78) Undefined index: csrf_token" in logs.
This commit is contained in:
parent
b2f888e386
commit
0c38dc8456
|
@ -75,7 +75,7 @@ class UserHelper {
|
|||
|
||||
$_SESSION["auth_module"] = false;
|
||||
|
||||
if (!$_SESSION["csrf_token"])
|
||||
if (empty($_SESSION["csrf_token"]))
|
||||
$_SESSION["csrf_token"] = bin2hex(get_random_bytes(16));
|
||||
|
||||
$_SESSION["ip_address"] = UserHelper::get_user_ip();
|
||||
|
|
Loading…
Reference in New Issue