Skip to content

Commit 66a8179

Browse files
committed
Removing non RFC3986 authorized characters
1 parent f8da20d commit 66a8179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Encryption/UrlCoder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ public function encode($url)
4444
*/
4545
public function decode($url)
4646
{
47-
return $this->_url->sessionUrlVar(base64_decode(strtr($url, '-_,', '+/=')));
47+
return $this->_url->sessionUrlVar(base64_decode(strtr($url, '-_~', '+/=')));
4848
}
4949
}

0 commit comments

Comments
 (0)