Hi Guys,
nice Tool, but there is a small "bug" in the tool.php:
At Line 223:
$resultquery .= " (groups_id LIKE '%$g_id%'";
Example:
There is the admin-group with ID=
1, and any other group with ID=
11(or other like "
102").
If you search "all users in admin-group" then there are all users displayed where the group-id
%1%!
I think the query should be something like this(Line 223):
$resultquery .= " (groups_id = '$g_id' OR group_id = '$g_id'";
Maybe, the
" OR group_id = '$g_id'" is not relevant for some pages.
Regards
Mike
UPDATE: I'm using the (newest) 0.33b-Version