diff options
Diffstat (limited to 'phpBB/download/file.php')
| -rw-r--r-- | phpBB/download/file.php | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/phpBB/download/file.php b/phpBB/download/file.php index a9cd4a3b3c..9ee489cef4 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -159,6 +159,8 @@ $user->session_begin(false);  $auth->acl($user->data);  $user->setup('viewtopic'); +$phpbb_content_visibility = $phpbb_container->get('content.visibility'); +  if (!$config['allow_attachments'] && !$config['allow_pm_attach'])  {  	send_status_line(404, 'Not Found'); @@ -225,7 +227,7 @@ else  			$post_row = $db->sql_fetchrow($result);  			$db->sql_freeresult($result); -			if (!$post_row || ($post_row['post_visibility'] != ITEM_APPROVED && !$auth->acl_get('m_approve', $post_row['forum_id']))) +			if (!$post_row || !$phpbb_content_visibility->is_visible('post', $post_row['forum_id'], $post_row))  			{  				// Attachment of a soft deleted post and the user is not allowed to see the post  				send_status_line(404, 'Not Found'); | 
