Home › Forums › Product Support Forums › Ajax Search Pro for WordPress Support › * as value › Reply To: * as value
October 27, 2015 at 11:17 am
#6474
Keymaster
You are right, there is a bug, I just found it.
wp-content/plugins/ajax-search-pro/includes/views/asp.shortcode.custom_fields.php on line 40:
[code]echo strpos(‘**’, $matches[2]);[/code]
it should be
[code]echo strpos($matches[2], ‘**’);[/code]