added LIKE query for filter accepted_by
This commit is contained in:
parent
239e78a525
commit
60108a28f5
|
|
@ -71,7 +71,7 @@ function ($value) { // if the filter is active, apply these constraints
|
|||
],
|
||||
false,
|
||||
function ($value) {
|
||||
$this->crud->addClause('where', 'accepted_by', $value);
|
||||
$this->crud->addClause('where', 'accepted_by', 'LIKE', '%' . $value . '%');
|
||||
});
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue