when user is invisible, this mod will still show him in the list.
to fix that, find in the MOD's code:WHERE user_level >= '".GUEST."'
replace it with:WHERE user_level >= '".GUEST."' AND user_invisible = 0
or if u still want to see "invisible" users when u logged in as administrator (or when u are not admin and in invis, but still want to be showed in the list :WHERE user_level >= '".GUEST."'".(($user_info['user_level'] == ADMIN) ? "" : " AND user_invisible = 0")." OR user_id = ".$user_info['user_id']."