1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/9758] Error because of missing functions_display.php fixed

PHPBB3-9758
This commit is contained in:
Crizzo
2014-03-15 15:37:55 +01:00
parent 0d4968f735
commit 9d568986ad
2 changed files with 8 additions and 2 deletions

View File

@@ -266,6 +266,11 @@ function view_message($id, $mode, $folder_id, $msg_id, $folder, $message_row)
}
}
if (!function_exists('phpbb_gen_download_links'))
{
include($phpbb_root_path . 'includes/functions_display.' . $phpEx);
}
// Display not already displayed Attachments for this post, we already parsed them. ;)
if (isset($attachments) && sizeof($attachments))
{