Topic: PUN_UNVERIFIED in admin_users.php
it will be nice to be able to have the possibility to only query unverified users from the admin_users.php script.
for example
after
<select name="user_group" tabindex="22">
<option value="all" selected="selected">All groups</option>
<?php
$result = $db->query('SELECT g_id, g_title FROM '.$db->prefix.'groups WHERE g_id!='.PUN_GUEST.' ORDER BY g_title') or error('Unable to fetch user group list', __FILE__, __LINE__, $db->error());
while ($cur_group = $db->fetch_assoc($result))
echo "\t\t\t\t\t\t\t\t\t\t\t".'<option value="'.$cur_group['g_id'].'">'.pun_htmlspecialchars($cur_group['g_title']).'</option>'."\n";
?>
adding
<option value="<?php echo PUN_UNVERIFIED; ?>">Unverified Users</option>