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
rawurlencode
The example in the docs at https://statamic.dev/modifiers/rawurlencode states that:
...given the following YAML-data:
example: please and thank you/Mommy
...and the following Antlers-code:
http://example.com/{{ example | rawurlencode }}
...you will get the following HTML output:
http://example.com/please%20and%thank&20you%2FMommy
But the actual HTML output is (notice the un-encoded forward slash before "Mommy"):
http://example.com/please%20and%20thank%20you/Mommy
...since Statamic\Modifiers\CoreModifiers::rawurlencode() does not encode forward slashes /.
Statamic\Modifiers\CoreModifiers::rawurlencode()
/
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The example in the docs at https://statamic.dev/modifiers/rawurlencode states that:
...given the following YAML-data:
...and the following Antlers-code:
...you will get the following HTML output:
But the actual HTML output is (notice the un-encoded forward slash before "Mommy"):
...since
Statamic\Modifiers\CoreModifiers::rawurlencode()
does not encode forward slashes/
.The text was updated successfully, but these errors were encountered: