mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-25 08:09:02 +01:00
fixed sql error in compatibility function old_read (colum-prefix was not added)
This commit is contained in:
parent
bafc6ab0e3
commit
82f5919d1c
@ -129,8 +129,8 @@ class contacts extends bocontacts
|
||||
{
|
||||
$fields = explode(',',$fields);
|
||||
}
|
||||
if ($order && !strstr($order,'_')) $order = 'contact_'.$order;
|
||||
if (!$order) $order = $fields ? $fields[0] : 'org_name,n_family,n_given';
|
||||
if ($order && !strstr($order,'_')) $order = 'contact_'.$order;
|
||||
|
||||
//echo '<p>contacts::search('.($cquery ? $cquery.'*' : $query).','.print_r($fields,true).",'$order $sort','','".($cquery ? '' : '%')."',false,'OR',".(!$limit ? 'false' : "array($start,$limit)").",".print_r($sfilter,true).");</p>\n";
|
||||
$rows =& $this->search($cquery ? $cquery.'*' : $query,$fields,$order.($sort ? ' '.$sort : ''),'',
|
||||
|
Loading…
Reference in New Issue
Block a user