1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-01-31 13:48:04 +01:00

[ticket/16337] Fix Emoji in BBcode Helpline

PHPBB3-16337
This commit is contained in:
3D-I 2020-01-24 04:46:37 +01:00
parent f7797b89ed
commit 11e2cd925b

View File

@ -1114,12 +1114,15 @@ function display_custom_bbcodes()
$row['bbcode_helpline'] = $user->lang[strtoupper($row['bbcode_helpline'])];
}
// Convert Numeric Character References to UTF-8 chars.
$row['bbcode_helpline'] = utf8_decode_ncr($row['bbcode_helpline']);
$custom_tags = array(
'BBCODE_NAME' => "'[{$row['bbcode_tag']}]', '[/" . str_replace('=', '', $row['bbcode_tag']) . "]'",
'BBCODE_ID' => $num_predefined_bbcodes + ($i * 2),
'BBCODE_TAG' => $row['bbcode_tag'],
'BBCODE_TAG_CLEAN' => str_replace('=', '-', $row['bbcode_tag']),
'BBCODE_HELPLINE' => utf8_decode_ncr($row['bbcode_helpline']),
'BBCODE_HELPLINE' => $row['bbcode_helpline'],
);
/**