Log in

View Full Version : Memberlist Search Criteria


soniceffect
03-16-2008, 02:25 PM
Is their a search string I can use to search for all the members of a specific usergroup?

I know you can use http://www.einherjar-clan.com/forum/memberlist.php?usergroupid=1 but only if your the leader of that group...

Is there another way to search for them, or is there an easy way to remove the limitation on searching by usergroup.

I know it needs an if statement removing (or modifying) in memberlist.php but have tried to do this several times myself without success and dont have a lot of knowledge on how to to this anyways to be honest.

Paul M
03-16-2008, 03:07 PM
The only way to remove the limitation is to remove the check in memberlist.php ;

This is the code you would need to remove ;

// check permission to do authorizations in this group
if (!$leadergroup = $db->query_first_slave("
SELECT usergroupleader.usergroupleaderid, usergroup.title
FROM " . TABLE_PREFIX . "usergroupleader AS usergroupleader
LEFT JOIN " . TABLE_PREFIX . "usergroup AS usergroup ON (usergroupleader.usergroupid = usergroup.usergroupid)
WHERE usergroupleader.userid = " . $vbulletin->userinfo['userid'] . "
AND usergroupleader.usergroupid = $usergroupid
"))
{
print_no_permission();
}

soniceffect
03-16-2008, 03:30 PM
thats what I was after ... paul your a star, cheers. Usually do these things myself but head is like a cabbage today lol