"fixed not working sort"

This commit is contained in:
Ralf Becker 2010-03-28 15:01:58 +00:00
parent a858db5eb8
commit 2d6cc439c3

View File

@ -810,7 +810,8 @@ class accounts_ldap
// sort the array
$this->_callback_sort = strtoupper($param['sort']);
$this->_callback_order = empty($param['order']) ? array('account_lid') : explode(',',$param['order']);
uasort($sortedAccounts=$accounts,array($this,'_sort_callback'));
$sortedAccounts = $accounts;
uasort($sortedAccounts,array($this,'_sort_callback'));
$account_search[$unl_serial]['data'] = $sortedAccounts;
$account_search[$unl_serial]['total'] = $this->total = isset($totalcount) ? $totalcount : count($accounts);