]> git.mxchange.org Git - friendica.git/commitdiff
Use Unicode to convert multiple hearts in Content\Smilies
authorHypolite Petovan <hypolite@mrpetovan.com>
Fri, 21 Jun 2019 00:25:14 +0000 (20:25 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Sun, 23 Jun 2019 21:53:25 +0000 (17:53 -0400)
src/Content/Smilies.php

index 57d14633ac2329ff7a491717c7f1a805613b0a62..2bf232d090464bcfb3f52ce01736e495978ef798 100644 (file)
@@ -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 .= '<img class="smiley" src="' . System::baseUrl() . '/images/smiley-heart.gif" alt="&lt;3" />';
+                       $t .= '';
                }
+
                $r =  str_replace($x[0], $t, $x[0]);
                return $r;
        }