From d1f2b15a610d2ba34500b2d78207859377c42467 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Sun, 28 Mar 2010 15:03:29 +0000 Subject: [PATCH] "fixed not working sort" --- phpgwapi/inc/class.accounts_ldap.inc.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.accounts_ldap.inc.php b/phpgwapi/inc/class.accounts_ldap.inc.php index eabd1be17a..7b6baa1749 100644 --- a/phpgwapi/inc/class.accounts_ldap.inc.php +++ b/phpgwapi/inc/class.accounts_ldap.inc.php @@ -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);