From f53f475e5329871df9b71169da9965e5213f3f35 Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Wed, 6 Sep 2006 08:13:56 +0000 Subject: [PATCH] fixed bug reported on the list by Pierre Rigal: Admin >> Manage users shows only first N groups and not all (was caused by default param of '' instead of null in the depricated accounts::get_list() method used by admin) --- phpgwapi/inc/class.accounts.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpgwapi/inc/class.accounts.inc.php b/phpgwapi/inc/class.accounts.inc.php index 4ed937a189..473829f58e 100644 --- a/phpgwapi/inc/class.accounts.inc.php +++ b/phpgwapi/inc/class.accounts.inc.php @@ -793,7 +793,7 @@ class accounts extends accounts_backend * * @deprecated use search */ - function get_list($_type='both',$start = '',$sort = '', $order = '', $query = '', $offset = '',$query_type='') + function get_list($_type='both',$start = null,$sort = '', $order = '', $query = '', $offset = null,$query_type='') { //echo "

accounts::get_list(".print_r($_type,True).",start='$start',sort='$sort',order='$order',query='$query',offset='$offset')

\n"; $this->setup_cache();