diff options
author | emkael <emkael@tlen.pl> | 2024-11-25 23:25:04 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2024-11-25 23:25:04 +0100 |
commit | 462e2c19dc5b3a8179d8d2a50211cd952e10e011 (patch) | |
tree | 0bc318e1985c27eecd9e42700fdff564e01b16c4 /http | |
parent | 48b5bd34cb8ac130d188f5bc16a3993eaffca2bb (diff) |
Typo fix
Diffstat (limited to 'http')
-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 { |