Fixed Missing verification of View Media permission on album create

thedude

Well-known member
XFMG 1.03

Function: XenGallery_ControllerPublic_Album actionCreate

Line 995

In addition to checking $canChangeAddPermission, there should be

Code:
if (!$canChangeViewPermission && ($viewMedia != $options->xengalleryAlbumViewPerm))
{
      $viewMedia = $options->xengalleryAlbumViewPerm;
}
 
Top Bottom