diff options
author | Fyorl <gaelreth@gmail.com> | 2012-08-14 12:49:56 +0100 |
---|---|---|
committer | Fyorl <gaelreth@gmail.com> | 2012-08-14 12:49:56 +0100 |
commit | 003f8b514bc1345b95859ced087f90fdf87b3b7a (patch) | |
tree | 3e75b12221cc8e913f589dbcddd8658951580ed3 /phpBB/download | |
parent | b96c72c156b5fd207ef0b1d1b55df037df688976 (diff) | |
download | forums-003f8b514bc1345b95859ced087f90fdf87b3b7a.tar forums-003f8b514bc1345b95859ced087f90fdf87b3b7a.tar.gz forums-003f8b514bc1345b95859ced087f90fdf87b3b7a.tar.bz2 forums-003f8b514bc1345b95859ced087f90fdf87b3b7a.tar.xz forums-003f8b514bc1345b95859ced087f90fdf87b3b7a.zip |
[feature/attach-dl] Renamed to phpbb_download_handle_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 d000fc49d2..94dbb9bb51 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_check_forum_auth($db, $auth, $attachment['topic_id']); + phpbb_download_handle_forum_auth($db, $auth, $attachment['topic_id']); } else { @@ -302,7 +302,7 @@ else // sizeof($attachments) >= 1 if (!$attachment['in_message']) { - phpbb_download_check_forum_auth($db, $auth, $attachment['topic_id']); + phpbb_download_handle_forum_auth($db, $auth, $attachment['topic_id']); } else { |