in your user.php find this line:
PHP Code:
echo "<li><a href=\"user.php?s=$session[sessionhash]&action=find&coppauser=yes\">List all COPPA users</a></li>\n";
after that add this:
PHP Code:
echo "<li><a href=\"user.php?s=$session[sessionhash]&action=find&empactive=no\">List all inactive users</a></li>\n";
then find this
PHP Code:
if ($coppauser=="yes") {
$condition.=" AND coppauser=1";
}
if ($coppauser=="no") {
$condition.=" AND coppauser=0";
}
below it add:
PHP Code:
if ($empactive=="no") {
$condition.=" AND empactive=0";
}
should be all