#8266 Fixed agent view in policies

This commit is contained in:
Daniel Maya 2021-11-15 17:12:56 +01:00
parent 845753112e
commit 147b3c4bb2
1 changed files with 4 additions and 0 deletions

View File

@ -1181,6 +1181,10 @@ function agents_get_group_agents(
}
}
if (isset($search['all_agents'])) {
unset($search['all_agents']);
}
if (isset($search['string']) === true) {
$string = io_safe_input($search['string']);
$filter[] = "(nombre COLLATE utf8_general_ci LIKE '%$string%' OR direccion LIKE '%$string%')";