mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
fix reverted regular sort order
This commit is contained in:
parent
646a04630d
commit
dc41db9741
@ -2903,7 +2903,7 @@ class Contacts extends Contacts\Storage
|
||||
{
|
||||
return (int)$a_assistent - (int)$b_assistent;
|
||||
}
|
||||
return $b['org_order'] - $a['org_order'];
|
||||
return $a['org_order'] - $b['org_order'];
|
||||
});
|
||||
//error_log(__METHOD__."('$criteria') returning $this->total rows: ".json_encode($rows));
|
||||
return $rows;
|
||||
|
Loading…
Reference in New Issue
Block a user