Hi,
I am testing out the plugin and noticed that the admin page for the plugin does not list anyone in 'verified users table' and the 'spammers table'.
The bug is caused by the fact that $meta_isverified['profile'] == NULL. The fix is buddypress-verified-admin.php line 38 currently is
$meta_isverified = get_user_meta($user_id,'bp-profile-verified');
It needs to be :
$meta_isverified = get_user_meta($user_id,'bp-profile-verified', true);
The same goes for line 93.
Also the Unactivated Users title should be renamed to be ' Users list'. The user_status = 0 in line 146 does not indicate if a user is inactive.
Hope this helps someone out.