8000 [HttpClient] Fix #50670 - HttpClient parseUrl is broken and not RFC c… · symfony/symfony@e35e256 · GitHub
[go: up one dir, main page]

Skip to content

Commit e35e256

Browse files
author
Daniel Kozák
committed
[HttpClient] Fix #50670 - HttpClient parseUrl is broken and not RFC compliant
1 parent 9b97b42 commit e35e256

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/Symfony/Component/HttpClient/HttpClientTrait.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,15 +625,13 @@ private static function mergeQueryString(?string $queryString, array $queryArray
625625
// https://tools.ietf.org/html/rfc3986#section-2.3 + some chars not encoded by browsers
626626
$queryString = strtr($queryString, [
627627
'%21' => '!',
628-
'%23' => '#',
629628
'%24' => '$',
630629
'%28' => '(',
631630
'%29' => ')',
632631
'%2A' => '*',
633632
'%2F' => '/',
634633
'%3A' => ':',
635634
'%3B' => ';',
636-
'%3F' => '?',
637635
'%40' => '@',
638636
'%5B' => '[',
639637
'%5D' => ']',

0 commit comments

Comments
 (0)
0