[feature/attach-dl] Renamed to phpbb_download_handle_forum_auth

PHPBB3-11042
This commit is contained in:
Fyorl 2012-08-14 12:49:56 +01:00
parent b96c72c156
commit 003f8b514b
2 changed files with 4 additions and 4 deletions

View file

@ -230,7 +230,7 @@ else if ($download_id)
{ {
if (!$attachment['in_message']) 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 else
{ {
@ -302,7 +302,7 @@ else
// sizeof($attachments) >= 1 // sizeof($attachments) >= 1
if (!$attachment['in_message']) 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 else
{ {

View file

@ -615,7 +615,7 @@ function phpbb_increment_downloads($db, $ids)
} }
/** /**
* Checks that the user has permission to download attachments from the forum * Handles authentication when downloading attachments from a post or topic
* *
* @param dbal $db The database object * @param dbal $db The database object
* @param phpbb_auth $auth The authentication object * @param phpbb_auth $auth The authentication object
@ -623,7 +623,7 @@ function phpbb_increment_downloads($db, $ids)
* *
* @return null * @return null
*/ */
function phpbb_download_check_forum_auth($db, $auth, $topic_id) function phpbb_download_handle_forum_auth($db, $auth, $topic_id)
{ {
$sql = 'SELECT t.forum_id, f.forum_password, f.parent_id $sql = 'SELECT t.forum_id, f.forum_password, f.parent_id
FROM ' . TOPICS_TABLE . ' t, ' . FORUMS_TABLE . " f FROM ' . TOPICS_TABLE . ' t, ' . FORUMS_TABLE . " f