From f232b63b80890a0db1c12015f4d1ff3fa3e412c0 Mon Sep 17 00:00:00 2001 From: Mark Sch Date: Tue, 29 Oct 2019 02:03:25 +0100 Subject: [PATCH] Strict check around auth topic. --- src/Controller/Component/AuthenticationComponent.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/Component/AuthenticationComponent.php b/src/Controller/Component/AuthenticationComponent.php index daef6712..44ac8aeb 100644 --- a/src/Controller/Component/AuthenticationComponent.php +++ b/src/Controller/Component/AuthenticationComponent.php @@ -137,7 +137,7 @@ public function startup() $request = $this->getController()->request; $action = $request->getParam('action'); - if (in_array($action, $this->unauthenticatedActions)) { + if (in_array($action, $this->unauthenticatedActions, true)) { return; }