Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit e35e256

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

File tree

1 file changed

+0
-2
lines changed
Filter options

1 file changed

+0
-2
lines changed

‎src/Symfony/Component/HttpClient/HttpClientTrait.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/HttpClient/HttpClientTrait.php
-2Lines 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)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.