From: Michael Vogel Date: Tue, 29 Aug 2023 02:59:27 +0000 (+0200) Subject: Update src/Content/Smilies.php X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=6ed440718d28da5449e97ae34a8a4bfcae91146f;p=friendica.git Update src/Content/Smilies.php Co-authored-by: Hypolite Petovan --- diff --git a/src/Content/Smilies.php b/src/Content/Smilies.php index 0c3397f13e..b7abbd8e5f 100644 --- a/src/Content/Smilies.php +++ b/src/Content/Smilies.php @@ -294,7 +294,7 @@ class Smilies */ public static function isEmojiPost(string $body): bool { - $conv = preg_replace('#\s#', '', html_entity_decode($body)); + $conv = preg_replace('#\s#u', '', html_entity_decode($body)); // Emojis are always 4 byte Unicode characters return (!empty($conv) && (strlen($conv) / mb_strlen($conv) == 4)); }