forked from extern/egroupware
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 (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));
|
//error_log(__METHOD__."('$criteria') returning $this->total rows: ".json_encode($rows));
|
||||||
return $rows;
|
return $rows;
|
||||||
|
Loading…
Reference in New Issue
Block a user