diff options
author | Fyorl <gaelreth@gmail.com> | 2012-08-14 11:36:16 +0100 |
---|---|---|
committer | Fyorl <gaelreth@gmail.com> | 2012-08-14 11:36:16 +0100 |
commit | e8830c3369dbd4b25a4798eeb3fe2c7834825c42 (patch) | |
tree | 43e10593e149b84595fa242750463ea28d30818c /phpBB/download | |
parent | 6da47555e040468e582ea73c501197d99689d07d (diff) | |
download | forums-e8830c3369dbd4b25a4798eeb3fe2c7834825c42.tar forums-e8830c3369dbd4b25a4798eeb3fe2c7834825c42.tar.gz forums-e8830c3369dbd4b25a4798eeb3fe2c7834825c42.tar.bz2 forums-e8830c3369dbd4b25a4798eeb3fe2c7834825c42.tar.xz forums-e8830c3369dbd4b25a4798eeb3fe2c7834825c42.zip |
[feature/attach-dl] Added docblock for renamed download_check_forum_auth
PHPBB3-11042
Diffstat (limited to 'phpBB/download')
-rw-r--r-- | phpBB/download/file.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/download/file.php b/phpBB/download/file.php index cd365767c2..1aeaceb824 100644 --- a/phpBB/download/file.php +++ b/phpBB/download/file.php @@ -230,7 +230,7 @@ else if ($download_id) { if (!$attachment['in_message']) { - phpbb_download_handle_passworded_forum($db, $auth, $attachment['topic_id']); + phpbb_download_check_forum_auth($db, $auth, $attachment['topic_id']); } else { @@ -329,7 +329,7 @@ else // sizeof($attachments) >= 1 if (!$attachment['in_message']) { - phpbb_download_handle_passworded_forum($db, $auth, $attachment['topic_id']); + phpbb_download_check_forum_auth($db, $auth, $attachment['topic_id']); } if (!class_exists('compress')) |