From 0c87e9cbc691b3040a922b8a0f674c076e12290c Mon Sep 17 00:00:00 2001 From: Thomas Rubini <74205383+ThomasRubini@users.noreply.github.com> Date: Thu, 12 Jan 2023 15:25:13 +0100 Subject: [PATCH] fix variable name --- Kernel/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Kernel/Controller.php b/Kernel/Controller.php index e153451..95ae460 100644 --- a/Kernel/Controller.php +++ b/Kernel/Controller.php @@ -39,7 +39,7 @@ final class controller $this->_A_urlParts['controller'] = array_shift($_A_urlParts); $this->_A_urlParts['action'] = array_shift($_A_urlParts); - $this->_A_urlParametres = $_A_urlParts; + $this->_A_urlParams = $_A_urlParts; $this->_A_postParams = $A_postParams;