Re-allow anonymous use of CSRF tokens

This commit is contained in:
Hypolite Petovan 2020-08-24 12:02:24 -04:00
parent 96ffe95949
commit 9b38abc32c
1 changed files with 1 additions and 5 deletions

View File

@ -140,11 +140,7 @@ abstract class BaseModule
return false;
}
if (empty($a->user)) {
return false;
}
$sec_hash = hash('whirlpool', $a->user['guid'] . $a->user['prvkey'] . session_id() . $x[0] . $typename);
$sec_hash = hash('whirlpool', ($a->user['guid'] ?? '') . ($a->user['prvkey'] ?? '') . session_id() . $x[0] . $typename);
return ($sec_hash == $x[1]);
}