We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fec5fc5 commit 84da574Copy full SHA for 84da574
src/tools/UriHelper.php
@@ -19,7 +19,7 @@ private static function removeUrlEncodedParam(string $encoded_string, string $ke
19
parse_str($encoded_string, $params);
20
if (array_key_exists($key, $params)) {
21
$value = $params[$key];
22
- unset($params);
+ unset($params[$key]);
23
return http_build_query($params);
24
}
25
return $encoded_string;
0 commit comments