Skip to content

Commit e425d56

Browse files
committed
Removing non FRC3986 authorized characters, please see #35885 to have the full context
1 parent 2abc466 commit e425d56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Url/Decoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function __construct(
3131
*/
3232
public function decode($url)
3333
{
34-
$url = $url !== null ? base64_decode(strtr($url, '-_,', '+/=')) : '';
34+
$url = $url !== null ? base64_decode(strtr($url, '-_~', '+/=')) : '';
3535
return $this->urlBuilder->sessionUrlVar($url);
3636
}
3737
}

0 commit comments

Comments
 (0)