1
Add the following line to /modules/system/blocks/system_blocks.php in the function b_system_newmembers_show()
...
$criteria = new CriteriaCompo(new Criteria('level', 0, '>'));
// new line follows below
$criteria->add(new Criteria('user_avatar', 'blank.gif', '<>'));
// continues...
$limit = (!empty($options[0])) ? $options[0] : 10;
...
This is helpful when the system allows custom avatars are you are running a personals/dating type site. (In this case, my site
MacBuds.)