I noticed members can set photos they upload to public galleries as an avatar. Can I make it so they can only set avatars from photos in there personal gallery?
I think
MG has addressed this in the 1.4.2 version (yet to be released)
OPEN
album_mod/album_hierarchy_sql.php
FIND
'AVATAR_PIC' => ( ($album_config['personal_allow_avatar_gallery'] == 1) && ($userdata['user_id'] == $picrow[$j]['pic_user_id']) ) ? '<br /><a href="'. append_sid('album_avatar.' . $phpEx . '?pic_id=' . $picrow[$j]['pic_id']) . '">' . $lang['Avatar_Set'] . '</a>' : '',
REPLACE WITH
'AVATAR_PIC' => ( ($album_config['personal_allow_avatar_gallery'] == 1) && ($userdata['user_id'] == $picrow[$j]['pic_user_id']) && ($picrow[$j]['cat_user_id'] != 0) ) ? '<br /><a href="'. append_sid('album_avatar.' . $phpEx . '?pic_id=' . $picrow[$j]['pic_id']) . '">' . $lang['Avatar_Set'] . '</a>' : '',
McManus, if you are using Icy Phoenix you may already be using
FAP 1.4.2...if so, try reversing the procedure above.