From 708cce70ebfae0101ba75c5b44df3e3304c67646 Mon Sep 17 00:00:00 2001 From: kj Date: Sat, 14 Mar 2020 19:54:57 -0400 Subject: [PATCH] remove urldecode on getter of Params class. --- src/Libs/Params.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Libs/Params.php b/src/Libs/Params.php index 1ec8542..63a9710 100644 --- a/src/Libs/Params.php +++ b/src/Libs/Params.php @@ -14,7 +14,7 @@ class Params { } public function __get($index){ - return (isset($this->data[$index]) && $this->data[$index] != '') ? urldecode($this->data[$index]) : null; + return (isset($this->data[$index]) && $this->data[$index] != '') ? $this->data[$index] : null; } }