diff options
author | Florian Pritz <bluewind@xinu.at> | 2023-01-29 14:28:41 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2023-01-29 14:28:41 +0100 |
commit | 40330d5a2d0384e015c7c832c8f6328d3c7ec769 (patch) | |
tree | 9b77d9118a94eb33d72eff297f3ab0d554e208c2 | |
parent | f1dcc23d9a8b140b7a0acd9ee27e1f482f939f4f (diff) |
fix: Remove double CSRF checking
The second verification (by us) fails. The constructor already performs a verification so we do not need to.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | application/core/MY_Controller.php | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/application/core/MY_Controller.php b/application/core/MY_Controller.php index 6e0d9d0a2..ce8e0e948 100644 --- a/application/core/MY_Controller.php +++ b/application/core/MY_Controller.php @@ -123,6 +123,5 @@ class MY_Controller extends CI_Controller { } $this->security->__construct('UTF-8'); - $this->security->csrf_verify(); } } |