if(userphoto_exists($user))
userphoto($user);
else
echo get_avatar($user->ID, 96);
This gives me the full photo size of the userphoto...
Changing it to
if(userphoto_exists($user))
userphoto_the_author_thumbnail$user);
else
echo get_avatar($user->ID, 96);
doesn't work