mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 00:13:35 +01:00
* Addressbook: fix for postgres error on advanced search in addressbook (Helpdesk 3421)
This commit is contained in:
parent
6c3213e284
commit
47642bf6fe
@ -345,7 +345,7 @@ class addressbook_sql extends so_sql_cf
|
||||
$join .= self::ACCOUNT_ACTIVE_JOIN;
|
||||
$filter[] = str_replace('UNIX_TIMESTAMP(NOW())',time(),self::ACOUNT_ACTIVE_FILTER);
|
||||
}
|
||||
if ($join || $criteria && is_string($criteria)) // search also adds a join for custom fields!
|
||||
if ($join || ($criteria && is_string($criteria)) || ($criteria && is_array($criteria) && $order_by)) // search also adds a join for custom fields!
|
||||
{
|
||||
switch(gettype($only_keys))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user