mirror of
https://github.com/friendica/friendica
synced 2024-11-10 03:42:53 +00:00
Re-allow anonymous use of CSRF tokens
This commit is contained in:
parent
96ffe95949
commit
9b38abc32c
1 changed files with 1 additions and 5 deletions
|
@ -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]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue