search not working correctly
At user module for example i search by mail: asd@dsa.com and i found that user but user_model.php has this property: public $filters = array('first_name', 'last_name', 'user_name'); which means that must search just by first_name, last_name or user_name. But search by all form fields.
Is this correct?
Comments
public $filters = array('first_name', 'last_name', 'user_name', 'email');
I was off when I mentioned the module config. The filters setting there is for extra filtering in the header, not the list view.