memberlist.php
$start = $pagination->validate_start($start, $config['topics_per_page'], $total_users);
Code: Select all
$config['topics_per_page'] = $config['num_users'];
$total_users = $config['num_users'];
david63 wrote: ↑Thu Jun 21, 2018 1:40 pmThis is a bit hacky but will do what you want.
Open:
memberlist.php
Find: (should be line 1419)
$start = $pagination->validate_start($start, $config['topics_per_page'], $total_users);
Before add:Code: Select all
$config['topics_per_page'] = $config['num_users']; $total_users = $config['num_users'];
$config['topics_per_page'] = (int) $total_users;
to be short.User shown are in the
Code: Select all
$user_types = array(USER_NORMAL, USER_FOUNDER);
if ($auth->acl_get('a_user'))
{
$user_types[] = USER_INACTIVE;
}