OK
I have looked at this and problem is that we use an array_slice to truncate the list of users but we are getting different shape arrays
on my MU install I am getting
array(1){
array(0){
userdetails}
}
}
so if I change ln 250 from
$users = array_slice($users, 0, intval($this->limit), true);
to
$users[1] = array_slice($users[1], 0, intval($this->limit), true);
the truncate works
I need to a load of testing in the single user etc. before I patch this and what to talk to Ben (the main coder) as well
You can try make this change to see if it fixes it
if it doesn't put print_r($users); on ln 149 and have a look at the shape of the array and send it to me / adjust the array _slice
Thanks for you help here
Paul