diff options
author | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-04 04:29:31 -0500 |
---|---|---|
committer | Oleg Pudeyev <oleg@bsdpower.com> | 2012-12-04 04:29:31 -0500 |
commit | 3687febdacc9b1629fd6f09e15305d61eacc9b78 (patch) | |
tree | 833554bbafffe0bd27e01b709feab8d4bd099eef /phpBB/includes/functions_download.php | |
parent | e765ccd075a19be7ec9c60970677d62dc75f0845 (diff) | |
download | forums-3687febdacc9b1629fd6f09e15305d61eacc9b78.tar forums-3687febdacc9b1629fd6f09e15305d61eacc9b78.tar.gz forums-3687febdacc9b1629fd6f09e15305d61eacc9b78.tar.bz2 forums-3687febdacc9b1629fd6f09e15305d61eacc9b78.tar.xz forums-3687febdacc9b1629fd6f09e15305d61eacc9b78.zip |
[ticket/11015] Change more docblocks.
PHPBB3-11015
Diffstat (limited to 'phpBB/includes/functions_download.php')
-rw-r--r-- | phpBB/includes/functions_download.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/includes/functions_download.php b/phpBB/includes/functions_download.php index b6371dbecc..89bcf7c8d9 100644 --- a/phpBB/includes/functions_download.php +++ b/phpBB/includes/functions_download.php @@ -596,7 +596,7 @@ function phpbb_parse_range_request($request_array, $filesize) /** * Increments the download count of all provided attachments * -* @param dbal $db The database object +* @param phpbb_db_driver $db The database object * @param array|int $ids The attach_id of each attachment * * @return null @@ -617,7 +617,7 @@ function phpbb_increment_downloads($db, $ids) /** * Handles authentication when downloading attachments from a post or topic * -* @param dbal $db The database object +* @param phpbb_db_driver $db The database object * @param phpbb_auth $auth The authentication object * @param int $topic_id The id of the topic that we are downloading from * @@ -651,7 +651,7 @@ function phpbb_download_handle_forum_auth($db, $auth, $topic_id) /** * Handles authentication when downloading attachments from PMs * -* @param dbal $db The database object +* @param phpbb_db_driver $db The database object * @param phpbb_auth $auth The authentication object * @param int $user_id The user id * @param int $msg_id The id of the PM that we are downloading from @@ -678,7 +678,7 @@ function phpbb_download_handle_pm_auth($db, $auth, $user_id, $msg_id) /** * Checks whether a user can download from a particular PM * -* @param dbal $db The database object +* @param phpbb_db_driver $db The database object * @param int $user_id The user id * @param int $msg_id The id of the PM that we are downloading from * |