When a new user signs up and uploads a profile pic, I found that the Privacy is being set to 2 (me only) when it appears that 3 (public) is the database default. Any idea what could be going wrong?
When a new user signs up and uploads a profile pic, I found that the Privacy is being set to 2 (me only) when it appears that 3 (public) is the database default. Any idea what could be going wrong? |
a ticket was created for this, it will be fixed |
Thank you for pointing me in the right direction. I found a quick fix off that: In inc / classes / BxDolFilesUploader.php 'AllowAlbumView' => $sAlbumUri == $oAlbums->getAlbumDefaultName() ? BX_DOL_PG_HIDDEN : BX_DOL_PG_ change as 'AllowAlbumView' => $sAlbumUri == $oAlbums->getAlbumDefaultName() ? BX_DOL_PG_HIDDEN : BX_DOL_PG_ALL |