I'd like to make the search in the PW Admin a little more fuzzy (able to match partial terms etc). Can I somehow change the default operator from "~=" to "%=" ?
In the admin theme I'm using, the form is generated like this:
$searchForm = $user->hasPermission('page-edit') ? $modules->get('ProcessPageSearch')->renderSearchForm() : '';
Can I pass a parameter to the
renderSearchForm()
function, or something similar without changing the core?
Thanks!