Skip to content

Commit

Permalink
Reverse rewrite should not reply with urldecoded values
Browse files Browse the repository at this point in the history
  • Loading branch information
gerryd committed Nov 21, 2024
1 parent 936109d commit ef93c8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Skeleton/Core/Util.php
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ private static function rewrite_reverse_routes(string $url_raw): string {
}

if (count($params) > 0) {
$new_url .= '?' . urldecode(http_build_query($params));
$new_url .= '?' . http_build_query($params);
}

/**
Expand Down

0 comments on commit ef93c8b

Please sign in to comment.