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 cd22b0c commit e7dc9f7Copy full SHA for e7dc9f7
src/Curl/Url.php
@@ -160,8 +160,8 @@ private function parseUrl($url)
160
$unreserved = $alpha . $digit . preg_quote('-._~');
161
162
// sub-delims = "!" / "$" / "&" / "'" / "(" / ")"
163
- // / "*" / "+" / "," / ";" / "="
164
- $sub_delims = preg_quote('!$&\'()*+,;=');
+ // / "*" / "+" / "," / ";" / "=" / "#"
+ $sub_delims = preg_quote('!$&\'()*+,;=#');
165
166
// HEXDIG = DIGIT / "A" / "B" / "C" / "D" / "E" / "F"
167
$hexdig = $digit . 'A-F';
0 commit comments