diff options
author | 3D-I <480857+3D-I@users.noreply.github.com> | 2019-10-30 14:47:05 +0100 |
---|---|---|
committer | 3D-I <480857+3D-I@users.noreply.github.com> | 2019-10-30 14:47:10 +0100 |
commit | ff25d0a5084e5e79bf7cc9faefd0dfdeb0ef5705 (patch) | |
tree | 0d53b73f38d17c7884e883d9a53177ffa98bcff0 /phpBB/posting.php | |
parent | c569d0dabc0868356c2c2f6bdf796c6433756fa2 (diff) | |
download | forums-ff25d0a5084e5e79bf7cc9faefd0dfdeb0ef5705.tar forums-ff25d0a5084e5e79bf7cc9faefd0dfdeb0ef5705.tar.gz forums-ff25d0a5084e5e79bf7cc9faefd0dfdeb0ef5705.tar.bz2 forums-ff25d0a5084e5e79bf7cc9faefd0dfdeb0ef5705.tar.xz forums-ff25d0a5084e5e79bf7cc9faefd0dfdeb0ef5705.zip |
[ticket/16153] Enable Emojis and rich text in Topic title
PHPBB3-16153
Diffstat (limited to 'phpBB/posting.php')
-rw-r--r-- | phpBB/posting.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index 9f3b26aa85..a0ddb9ff15 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -1182,7 +1182,7 @@ if ($submit || $preview || $refresh) } /** - * Replace Emojis and other 4bit UTF-8 chars not allowed by MySql to UCR / NCR. + * Replace Emojis and other 4bit UTF-8 chars not allowed by MySQL to UCR/NCR. * Using their Numeric Character Reference's Hexadecimal notation. */ $post_data['post_subject'] = utf8_encode_ucr($post_data['post_subject']); |