From 30227c93625747598d9d603014e8dd6340e554bd Mon Sep 17 00:00:00 2001 From: fredtempez Date: Tue, 20 Jun 2023 17:58:58 +0200 Subject: [PATCH] checkcsrf --- core/core.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/core.php b/core/core.php index 6cfa4465..be1e5497 100644 --- a/core/core.php +++ b/core/core.php @@ -473,7 +473,7 @@ class common */ public function checkCSRF() { - return ((empty($_POST['csrf']) or hash_equals($_SESSION['csrf'], $_POST['csrf']) === false) === false); + return ((empty($_POST['csrf']) or hash_equals( $_POST['csrf'], $_SESSION['csrf']) === false) === false); } /**