We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I tried adding this shortened url for a google map: https://goo.gl/maps/pZTiA Before patch - worked fine After patch - get a 404 due to safeCurl changing the url thus: [originalUrl] => https://goo.gl/maps/pZTiA [cleanUrl] => https://goo.gl/maps%2FpZTiA And google not liking the / being turned into %2F
The text was updated successfully, but these errors were encountered:
Potentially when rebuilding URL, you could use http_build_url function (http://php.net/manual/en/function.http-build-url.php) which does reverse of parse_url :D
Sorry, something went wrong.
No branches or pull requests
When I tried adding this shortened url for a google map: https://goo.gl/maps/pZTiA
Before patch - worked fine
After patch - get a 404
due to safeCurl changing the url thus:
[originalUrl] => https://goo.gl/maps/pZTiA
[cleanUrl] => https://goo.gl/maps%2FpZTiA
And google not liking the / being turned into %2F
The text was updated successfully, but these errors were encountered: