"fixed not working sort"

This commit is contained in:
Ralf Becker 2010-03-28 15:03:29 +00:00
parent 73cf603590
commit d1f2b15a61

View File

@ -811,7 +811,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);