mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/11201] Make profile field classes autoloadable
PHPBB3-11201
This commit is contained in:
@@ -29,8 +29,7 @@ class ucp_profile
|
||||
function main($id, $mode)
|
||||
{
|
||||
global $cache, $config, $db, $user, $auth, $template, $phpbb_root_path, $phpEx;
|
||||
global $request;
|
||||
global $phpbb_container;
|
||||
global $request, $phpbb_container;
|
||||
|
||||
$user->add_lang('posting');
|
||||
|
||||
@@ -257,9 +256,7 @@ class ucp_profile
|
||||
trigger_error('NO_AUTH_PROFILEINFO');
|
||||
}
|
||||
|
||||
include($phpbb_root_path . 'includes/functions_profile_fields.' . $phpEx);
|
||||
|
||||
$cp = new custom_profile();
|
||||
$cp = $phpbb_container->get('profilefields');
|
||||
|
||||
$cp_data = $cp_error = array();
|
||||
|
||||
|
Reference in New Issue
Block a user