From 2fb70bd5f2884b95398620d046174b24ce1c5316 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 20 Jun 2019 20:25:14 -0400 Subject: [PATCH] Use Unicode to convert multiple hearts in Content\Smilies --- src/Content/Smilies.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Content/Smilies.php b/src/Content/Smilies.php index 57d14633a..2bf232d09 100644 --- a/src/Content/Smilies.php +++ b/src/Content/Smilies.php @@ -267,17 +267,18 @@ class Smilies * @return string HTML Output * * @throws \Friendica\Network\HTTPException\InternalServerErrorException - * @todo : Rework because it doesn't work correctly */ private static function pregHeart($x) { if (strlen($x[1]) == 1) { return $x[0]; } + $t = ''; for ($cnt = 0; $cnt < strlen($x[1]); $cnt ++) { - $t .= '<3'; + $t .= '❤'; } + $r = str_replace($x[0], $t, $x[0]); return $r; }