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
Hi @samiahmedsiddiqui The commit 15b7cd4 in particular line 54 provokes an issue with our content views pro filter at https://www.internetsociety.org/blog/?tx_region_news_regions=africa i.e. the select item will not stay selected and the content in the grid will not be updated.
Replacing class-custom-permalinks-frontend.php on line 54 sanitize_url by sanitize_text_field on your version 2.5.2 fixes the issue.
class-custom-permalinks-frontend.php
sanitize_url
sanitize_text_field
Can you create a fix? Thank you very much! Henri
The text was updated successfully, but these errors were encountered:
agreed
if the url / querystring is https://www.example.com?foo=bar
https://www.example.com?foo=bar
then sanitize_url($_SERVER['QUERY_STRING']) would return http://foo=bar.. it should just be foo=bar
sanitize_url($_SERVER['QUERY_STRING'])
http://foo=bar
foo=bar
I'm not sure if sanitize_text_field is the correct function to use though for this?
(update: checked and actually ChatGPT says it is, so thanks for the suggestion!)
Sorry, something went wrong.
No branches or pull requests
Hi @samiahmedsiddiqui
The commit 15b7cd4
in particular line 54 provokes an issue with our content views pro filter at https://www.internetsociety.org/blog/?tx_region_news_regions=africa
i.e. the select item will not stay selected and the content in the grid will not be updated.
Replacing
class-custom-permalinks-frontend.php
on line 54sanitize_url
bysanitize_text_field
on your version 2.5.2 fixes the issue.Can you create a fix?
Thank you very much!
Henri
The text was updated successfully, but these errors were encountered: