Good morning Gang,
Here is the answer to your problem. I knew it was not something difficult:
In your includes/adminfunctions_user.php find:
PHP Code:
$condition .= iif($user['email'], " AND email LIKE '%" . addslashes_like($user['email']) . "%'");
Right above that, add:
PHP Code:
$condition .= iif($user['userid'], " AND user.userid = '" . addslashes_like($user['userid']) . "'");
That should solve your search with User ID problem.
Let me go and update the installation instructions and all.
Rgds