aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_profile_fields.php
diff options
context:
space:
mode:
authorBart van Bragt <bartvb@users.sourceforge.net>2005-06-16 21:22:28 +0000
committerBart van Bragt <bartvb@users.sourceforge.net>2005-06-16 21:22:28 +0000
commit67113ee028a0baa82c6b031e0e3dc1e9fa09608c (patch)
tree9c7ce0849ee3f980f5a13d0fcb3ad21f17eb89ce /phpBB/includes/functions_profile_fields.php
parent2e4ea58d28238c54df21abd2ba21a6c8d43f04f3 (diff)
downloadforums-67113ee028a0baa82c6b031e0e3dc1e9fa09608c.tar
forums-67113ee028a0baa82c6b031e0e3dc1e9fa09608c.tar.gz
forums-67113ee028a0baa82c6b031e0e3dc1e9fa09608c.tar.bz2
forums-67113ee028a0baa82c6b031e0e3dc1e9fa09608c.tar.xz
forums-67113ee028a0baa82c6b031e0e3dc1e9fa09608c.zip
Fixed a problem with editing bbcode in textfields
git-svn-id: file:///svn/phpbb/trunk@5162 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/functions_profile_fields.php')
-rw-r--r--phpBB/includes/functions_profile_fields.php2
1 files changed, 1 insertions, 1 deletions
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;
}