mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-09 23:48:28 +01:00
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)
This commit is contained in:
parent
b11016c31f
commit
f53f475e53
@ -793,7 +793,7 @@ class accounts extends accounts_backend
|
|||||||
*
|
*
|
||||||
* @deprecated use search
|
* @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 "<p>accounts::get_list(".print_r($_type,True).",start='$start',sort='$sort',order='$order',query='$query',offset='$offset')</p>\n";
|
//echo "<p>accounts::get_list(".print_r($_type,True).",start='$start',sort='$sort',order='$order',query='$query',offset='$offset')</p>\n";
|
||||||
$this->setup_cache();
|
$this->setup_cache();
|
||||||
|
Loading…
Reference in New Issue
Block a user