diff options
-rw-r--r-- | http/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/http/index.php b/http/index.php index ca9b6ba..78e3901 100644 --- a/http/index.php +++ b/http/index.php @@ -26,7 +26,7 @@ $feed = array_shift($params); $parsedParams = []; foreach ($params as $param) { $splitParam = explode(':', $param, 2); - $parsedParams[$splitParam[0]] = count($splitParam) > 1 ? $plitParam[1] : TRUE; + $parsedParams[$splitParam[0]] = count($splitParam) > 1 ? $splitParam[1] : TRUE; } try { |