I guess you are using Icy Phoenix 1.0.11.11.
If this is your case then:
OPEN
includes/album_mod/album_personal.php
FIND (this or similar code)
// ------------------------------------------------------------------------
// Check view permissions
// ------------------------------------------------------------------------
$auth_data = album_get_auth_data(album_get_personal_root_id($album_user_id));
//
// END check permissions
//
REPLACE WITH
// ------------------------------------------------------------------------
// Check view permissions
// ------------------------------------------------------------------------
if ( !album_check_permission($auth_data, ALBUM_AUTH_VIEW) )
{
if (!$userdata['session_logged_in'])
{
redirect(append_sid(LOGIN_MG . '?redirect=album.' . $phpEx . '&user_id=' . $album_user_id));
}
else
{
message_die(GENERAL_MESSAGE, $lang['Not_Authorised']);
}
}
//
// END check permissions
//