[ticket/16399] Fix Emoji in topic tile for MCP split topic

PHPBB3-16399
This commit is contained in:
3D-I 2020-03-12 15:26:06 +01:00
parent 0a089c8656
commit 1c2f65f268

View file

@ -457,6 +457,12 @@ function split_topic($action, $topic_id, $to_forum_id, $subject)
$post_info = $post_info[$post_id];
$subject = trim($subject);
/**
* Replace Emojis and other 4bit UTF-8 chars not allowed by MySQL to UCR/NCR.
* Using their Numeric Character Reference's Hexadecimal notation.
*/
$subject = utf8_encode_ucr($subject);
// Make some tests
if (!$subject)
{