Add this to your SphinxClient class
<?php function RemoveFilter ( $attribute ) { assert ( is_string($attribute) ); foreach($this->_filters AS $key => $filter){ if($filter['attr'] == $attribute){ unset($this->_filters[$key]); break; } } } ?>
Then run $SphinxClient->RemoveFilter('your filter'); to remove the filter.
blaff source share