Hello!
According to this snippet: http://forum.websitebaker.org/index.php/topic,6662.0.html
It just extends the user dropdown list with the group a user is in. This is simplifying user and group maintaining with many users.
In /admin/users/index.php
Line 36-42 replace:
// Get existing value from database
$database = new database();
$query = "SELECT user_id, username, display_name, ".TABLE_PREFIX."groups.name AS group_name FROM ".TABLE_PREFIX."users, ".TABLE_PREFIX."groups WHERE (user_id != '1') AND (".TABLE_PREFIX."users.group_id = ".TABLE_PREFIX."groups.group_id) ORDER BY username";
$results = $database->query($query);
if($database->is_error()) {
$admin->print_error($database->get_error(), 'index.php');
}
Line 51-56 replace:
// Loop through users
while($user = $results->fetchRow()) {
$template->set_var('VALUE', $user['user_id']);
$template->set_var('NAME', $user['display_name'].' ('.$user['username'].')');
$template->parse('list', 'list_block', true);
}
Regards Michael