We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2f1a292 commit 9be7031Copy full SHA for 9be7031
1 file changed
Libs/Utils/JsonUtils.php
@@ -66,6 +66,7 @@ public static function encodeUrl(?string $url):?string{
66
$url = str_replace("%3D","=", $url);
67
$url = str_replace("%3F","?", $url);
68
$url = str_replace("%26","&", $url);
69
+ $url = str_replace("%2B","+", $url);
70
return $url;
71
}
72
0 commit comments