If you search in the 'Static list' you will get no result.
Version 1.6.1
Changing the foreach in funktion search I was able to set $result but then I'm getting all contacts:
foreach ($record as $key => $data) {
$data = is_array($data) ? implode(' ', $data) : (string) $data;
if (strpos(mb_strtolower($data), mb_strtolower($value)) !== false) {
$result->add($record);
$result->count += 1;
break;
}
}
If you search in the 'Static list' you will get no result.
Version 1.6.1
Changing the
foreachinfunktion searchI was able to set$resultbut then I'm getting all contacts: