Users reported a bug two years ago that this functional does not work, we have fixed it and now it appears again.
We have passed it to our developer again, I'll provide you with fix or workaround asap.
Marcus, here's the fix.
in /ow_system_plugins/base/controllers/join.php
on line 880
replace this:
$displayPhotoUpload = OW::getConfig()->getValue('base', 'join_display_photo_upload');
$avatarValidator = OW::getClassInstance("BASE_CLASS_AvatarFieldValidator", true);
switch ( $displayPhotoUpload )
{
with this: $displayPhotoUpload = OW::getConfig()->getValue('base', 'join_display_photo_upload');
$avatarValidator = OW::getClassInstance("BASE_CLASS_AvatarFieldValidator", false);
switch ( $displayPhotoUpload )
{