
Re: Personal Galleries Not Showing Up
Looks like you have stumbled across a bug here
OPEN
album_modcp.php
FIND
'APPROVAL_BUTTON' => ( $is_auth_approve == true ) ? '' : '<input type="submit" class="liteoption" name="approval" value="' . $lang['Approve'] . '" />',
REPLACE WITH
'APPROVAL_BUTTON' => ( !$is_auth_approve == true ) ? '' : '<input type="submit" class="liteoption" name="approval" value="' . $lang['Approve'] . '" />',
FIND
'UNAPPROVAL_BUTTON' => ( $is_auth_approve == true ) ? '' : '<input type="submit" class="liteoption" name="unapproval" value="' . $lang['Unapprove'] . '" />',
REPLACE WITH
'UNAPPROVAL_BUTTON' => ( !$is_auth_approve == true ) ? '' : '<input type="submit" class="liteoption" name="unapproval" value="' . $lang['Unapprove'] . '" />',
Still need attention to the Recent Pics block ..... they should not show if not approved.