From: friendica Date: Thu, 15 Mar 2012 10:44:41 +0000 (-0700) Subject: fix recycle symbol when using plaintext editor X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=9cd1c35c22e40cc7fea522f071a72452edd08017;p=friendica.git fix recycle symbol when using plaintext editor --- diff --git a/mod/share.php b/mod/share.php index f6c025e3ce..5a72e23770 100755 --- a/mod/share.php +++ b/mod/share.php @@ -17,7 +17,7 @@ function share_init(&$a) { $o = ''; if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) { - $o .= '♲ [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]'; + $o .= "\xE2\x99\xb2" . ' [url=' . $r[0]['author-link'] . ']' . $r[0]['author-name'] . '[/url]'; if($r[0]['title']) $o .= '[b]' . $r[0]['title'] . '[/b]' . "\n"; $o .= $r[0]['body'] . "\n";