1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/11711] Improve coding and comments of character check

PHPBB3-11711
This commit is contained in:
Marc Alexander
2014-06-10 15:51:25 +02:00
parent 65884bf2bd
commit 5ee7f20f4e
4 changed files with 16 additions and 11 deletions

View File

@@ -1029,7 +1029,7 @@ if ($submit || $preview || $refresh)
}
// Check for out-of-bounds characters that are currently
// not supported by utf8_bin
// not supported by utf8_bin in MySQL
if (preg_match_all('/[\x{10000}-\x{10FFFF}]/u', $post_data['post_subject'], $matches))
{
$character_list = implode('<br />', $matches[0]);