1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 02:06:32 +02:00

[feature/attach-dl] Renamed $post_id to $post_msg_id

PHPBB3-11042
This commit is contained in:
Fyorl
2012-08-17 16:16:02 +01:00
parent 884a213d55
commit 53aadd60a6
3 changed files with 9 additions and 9 deletions

View File

@@ -283,7 +283,7 @@ function view_message($id, $mode, $folder_id, $msg_id, $folder, $message_row)
// Display not already displayed Attachments for this post, we already parsed them. ;)
if (isset($attachments) && sizeof($attachments))
{
$methods = phpbb_gen_download_links('post_id', $msg_id, $phpbb_root_path, $phpEx);
$methods = phpbb_gen_download_links('post_msg_id', $msg_id, $phpbb_root_path, $phpEx);
foreach ($methods as $method)
{
$template->assign_block_vars('dl_method', $method);