mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
[ticket/11201] Make profile field classes autoloadable
PHPBB3-11201
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user