diff options
author | Crizzo <mail@crizzo.de> | 2014-03-15 15:37:55 +0100 |
---|---|---|
committer | Crizzo <mail@crizzo.de> | 2014-03-28 19:12:32 +0100 |
commit | 9d568986ade8ae24bad3c57475b9420d743ecbb6 (patch) | |
tree | 2762fc9756c538589bc966e60dd3fe0aca0d3203 /phpBB/includes/ucp/ucp_pm_viewmessage.php | |
parent | 0d4968f7356cc177a4a0921eef2853c343798110 (diff) | |
download | forums-9d568986ade8ae24bad3c57475b9420d743ecbb6.tar forums-9d568986ade8ae24bad3c57475b9420d743ecbb6.tar.gz forums-9d568986ade8ae24bad3c57475b9420d743ecbb6.tar.bz2 forums-9d568986ade8ae24bad3c57475b9420d743ecbb6.tar.xz forums-9d568986ade8ae24bad3c57475b9420d743ecbb6.zip |
[ticket/9758] Error because of missing functions_display.php fixed
PHPBB3-9758
Diffstat (limited to 'phpBB/includes/ucp/ucp_pm_viewmessage.php')
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_viewmessage.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_viewmessage.php b/phpBB/includes/ucp/ucp_pm_viewmessage.php index 715d99f168..80974e752e 100644 --- a/phpBB/includes/ucp/ucp_pm_viewmessage.php +++ b/phpBB/includes/ucp/ucp_pm_viewmessage.php @@ -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)) { |