fix reverted regular sort order

This commit is contained in:
Ralf Becker 2021-03-09 20:57:39 +02:00
parent 646a04630d
commit dc41db9741

View File

@ -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;