mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
Merge branch '3.3.x'
This commit is contained in:
commit
0d4bf2df9d
1 changed files with 12 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue