[ad_1]
I found the problem, was getting too aggressive about filtering the input.
I will need to issue an update to fix this, will happen soon.
You can fix this yourself like this:
open the plugin file classes/PDb_List_Query.php
on line 1444, you’ll see:
'flags' => FILTER_FLAG_NO_ENCODE_QUOTES | FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH | FILTER_FLAG_STRIP_BACKTICK
change that to:
'flags' => FILTER_FLAG_NO_ENCODE_QUOTES | FILTER_FLAG_STRIP_BACKTICK
and the special characters will be left unchanged.
Not worked, till I also changed on classes/PDb_List_Query.php line 346
filter_var( $term, FILTER_DEFAULT, array( 'flags' => FILTER_FLAG_STRIP_LOW | FILTER_FLAG_STRIP_HIGH | FILTER_FLAG_STRIP_BACKTICK | FILTER_FLAG_NO_ENCODE_QUOTES ) ),
to
filter_var( $term, FILTER_DEFAULT, array( 'flags' => FILTER_FLAG_STRIP_BACKTICK | FILTER_FLAG_NO_ENCODE_QUOTES ) ),
Please fix that on future releases.
Thanks
- This reply was modified 16 minutes ago by arshavir.
Thanks for your support. Works!
