Use Unicode to convert multiple hearts in Content\Smilies
This commit is contained in:
parent
b51fb8c994
commit
2fb70bd5f2
|
@ -267,17 +267,18 @@ class Smilies
|
||||||
* @return string HTML Output
|
* @return string HTML Output
|
||||||
*
|
*
|
||||||
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
* @todo : Rework because it doesn't work correctly
|
|
||||||
*/
|
*/
|
||||||
private static function pregHeart($x)
|
private static function pregHeart($x)
|
||||||
{
|
{
|
||||||
if (strlen($x[1]) == 1) {
|
if (strlen($x[1]) == 1) {
|
||||||
return $x[0];
|
return $x[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
$t = '';
|
$t = '';
|
||||||
for ($cnt = 0; $cnt < strlen($x[1]); $cnt ++) {
|
for ($cnt = 0; $cnt < strlen($x[1]); $cnt ++) {
|
||||||
$t .= '<img class="smiley" src="' . System::baseUrl() . '/images/smiley-heart.gif" alt="<3" />';
|
$t .= '❤';
|
||||||
}
|
}
|
||||||
|
|
||||||
$r = str_replace($x[0], $t, $x[0]);
|
$r = str_replace($x[0], $t, $x[0]);
|
||||||
return $r;
|
return $r;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue