mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
Fix category search when category ID is sent as an array in (addressbook advanced search) again
This commit is contained in:
parent
6391dcf517
commit
04983df258
@ -249,7 +249,7 @@ class addressbook_sql extends so_sql_cf
|
||||
// fix cat_id criteria to search in comma-separated multiple cats and return subcats
|
||||
if (is_array($criteria) && ($cats = $criteria['cat_id']))
|
||||
{
|
||||
$criteria += $this->_cat_search($criteria['cat_id'],$not);
|
||||
$criteria = array_merge($criteria, $this->_cat_search($criteria['cat_id']));
|
||||
unset($criteria['cat_id']);
|
||||
}
|
||||
// fix cat_id filter to search in comma-separated multiple cats and return subcats
|
||||
|
Loading…
Reference in New Issue
Block a user