]> git.mxchange.org Git - friendica.git/commitdiff
fix recycle symbol when using plaintext editor
authorfriendica <info@friendica.com>
Thu, 15 Mar 2012 10:44:41 +0000 (03:44 -0700)
committerfriendica <info@friendica.com>
Thu, 15 Mar 2012 10:44:41 +0000 (03:44 -0700)
mod/share.php

index f6c025e3cef29ea774c58bae14d341c94a18ec78..5a72e2377064c524fb2673fd8873c87b2ddec320 100755 (executable)
@@ -17,7 +17,7 @@ function share_init(&$a) {
        $o = '';
 
        if(local_user() && intval(get_pconfig(local_user(),'system','plaintext'))) {
-               $o .= '&#x2672; [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";