diff options
Diffstat (limited to 'phpBB/includes')
| -rw-r--r-- | phpBB/includes/functions_posting.php | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/includes/functions_posting.php b/phpBB/includes/functions_posting.php index cf511ec247..d150845952 100644 --- a/phpBB/includes/functions_posting.php +++ b/phpBB/includes/functions_posting.php @@ -2045,6 +2045,11 @@ function submit_post($mode, $subject, $username, $topic_type, &$poll_ary, &$data  				continue;  			} +			if (preg_match('/[\x{10000}-\x{10FFFF}]/u', $attach_row['attach_comment'])) +			{ +				trigger_error('ATTACH_COMMENT_NO_EMOJIS'); +			} +  			if (!$attach_row['is_orphan'])  			{  				// update entry in db if attachment already stored in db and filespace  | 
