diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-09-17 15:17:54 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-01-10 16:11:11 +0100 |
commit | 2471b19d73c38359ed70a7c9e3a82a297946c5b8 (patch) | |
tree | 49d1bd680e180abd467de9a3f2a35b4ee422c366 /phpBB/viewtopic.php | |
parent | 3e84fb76a3639dce2becb7ae620423a5cfdccecb (diff) | |
download | forums-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/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index 14040176cb..396de132cb 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1265,11 +1265,7 @@ $db->sql_freeresult($result); // Load custom profile fields if ($config['load_cpf_viewtopic']) { - if (!class_exists('custom_profile')) - { - include($phpbb_root_path . 'includes/functions_profile_fields.' . $phpEx); - } - $cp = new custom_profile(); + $cp = $phpbb_container->get('profilefields'); // Grab all profile fields from users in id cache for later use - similar to the poster cache $profile_fields_tmp = $cp->generate_profile_fields_template('grab', $id_cache); |