aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_pm_viewmessage.php
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-09-17 15:17:54 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-01-10 16:11:11 +0100
commit2471b19d73c38359ed70a7c9e3a82a297946c5b8 (patch)
tree49d1bd680e180abd467de9a3f2a35b4ee422c366 /phpBB/includes/ucp/ucp_pm_viewmessage.php
parent3e84fb76a3639dce2becb7ae620423a5cfdccecb (diff)
downloadforums-2471b19d73c38359ed70a7c9e3a82a297946c5b8.tar
forums-2471b19d73c38359ed70a7c9e3a82a297946c5b8.tar.gz
forums-2471b19d73c38359ed70a7c9e3a82a297946c5b8.tar.bz2
forums-2471b19d73c38359ed70a7c9e3a82a297946c5b8.tar.xz
forums-2471b19d73c38359ed70a7c9e3a82a297946c5b8.zip
[ticket/11201] Make profile field classes autoloadable
PHPBB3-11201
Diffstat (limited to 'phpBB/includes/ucp/ucp_pm_viewmessage.php')
-rw-r--r--phpBB/includes/ucp/ucp_pm_viewmessage.php8
1 files changed, 2 insertions, 6 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_viewmessage.php b/phpBB/includes/ucp/ucp_pm_viewmessage.php
index cebbadc7c7..78a0e010e6 100644
--- a/phpBB/includes/ucp/ucp_pm_viewmessage.php
+++ b/phpBB/includes/ucp/ucp_pm_viewmessage.php
@@ -20,7 +20,7 @@ if (!defined('IN_PHPBB'))
*/
function view_message($id, $mode, $folder_id, $msg_id, $folder, $message_row)
{
- global $user, $template, $auth, $db, $cache;
+ global $user, $template, $auth, $db, $cache, $phpbb_container;
global $phpbb_root_path, $request, $phpEx, $config, $phpbb_dispatcher;
$user->add_lang(array('viewtopic', 'memberlist'));
@@ -61,11 +61,7 @@ function view_message($id, $mode, $folder_id, $msg_id, $folder, $message_row)
// Load the custom profile fields
if ($config['load_cpf_pm'])
{
- if (!class_exists('custom_profile'))
- {
- include($phpbb_root_path . 'includes/functions_profile_fields.' . $phpEx);
- }
- $cp = new custom_profile();
+ $cp = $phpbb_container->get('profilefields');
$profile_fields = $cp->generate_profile_fields_template('grab', $author_id);
}