diff options
author | Marc Alexander <admin@m-a-styles.de> | 2020-01-20 17:25:56 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2020-01-20 17:25:56 +0100 |
commit | 1d90ddc0a9508544b985057a13b378274a912dbe (patch) | |
tree | 4cee3b00b36b50a3bc40f3215d24eb1f56a4411a | |
parent | Merge branch '3.2.x' into 3.3.x (diff) | |
parent | Merge pull request #5813 from 3D-I/ticket/15712 (diff) | |
download | phpbb-1d90ddc0a9508544b985057a13b378274a912dbe.tar.gz phpbb-1d90ddc0a9508544b985057a13b378274a912dbe.tar.bz2 phpbb-1d90ddc0a9508544b985057a13b378274a912dbe.zip |
Merge branch '3.2.x' into 3.3.x
-rw-r--r-- | phpBB/includes/ucp/ucp_pm_compose.php | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php index 87a8c91fd2..2e1ad3fdcf 100644 --- a/phpBB/includes/ucp/ucp_pm_compose.php +++ b/phpBB/includes/ucp/ucp_pm_compose.php @@ -665,6 +665,12 @@ function compose_pm($id, $mode, $action, $user_folders = array()) $subject = (!$subject && $action != 'post') ? $user->lang['NEW_MESSAGE'] : $subject; $message = $request->variable('message', '', true); + /** + * 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); + if ($subject && $message) { if (confirm_box(true)) @@ -870,6 +876,12 @@ function compose_pm($id, $mode, $action, $user_folders = array()) 'address_list' => $address_list ); + /** + * 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); + // ((!$message_subject) ? $subject : $message_subject) $msg_id = submit_pm($action, $subject, $pm_data); |