diff --git a/phpBB/includes/functions_profile_fields.php b/phpBB/includes/functions_profile_fields.php index e29cb5305b..af4b5de46f 100644 --- a/phpBB/includes/functions_profile_fields.php +++ b/phpBB/includes/functions_profile_fields.php @@ -564,7 +564,7 @@ class custom_profile include_once($phpbb_root_path . 'includes/functions_posting.'.$phpEx); $message_parser = new parse_message(); $message_parser->message = $value; - $message_parser->decode_message($user->profile_fields[$profile_row['field_ident'] . '_bbcode_uid']); + $message_parser->decode_message($user->profile_fields[str_replace('pf_', '', $profile_row['field_ident']) . '_bbcode_uid']); $value = $message_parser->message; }