diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-15 15:03:31 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-15 15:03:31 -0400 |
commit | 1d2049a6d6fe327340da2b1298f06f9fbde183c7 (patch) | |
tree | dc658393ca69ebb2f6fa3c5e927584cf1d6ee272 /mod/share.php | |
parent | 6e133e75c3ed12a4637d9cc946b1cb838619b9cc (diff) | |
parent | f96aff5518d2d5fb726d381892893a68d8c36450 (diff) | |
download | volse-hubzilla-1d2049a6d6fe327340da2b1298f06f9fbde183c7.tar.gz volse-hubzilla-1d2049a6d6fe327340da2b1298f06f9fbde183c7.tar.bz2 volse-hubzilla-1d2049a6d6fe327340da2b1298f06f9fbde183c7.zip |
Merge branch 'master', remote-tracking branch 'remotes/upstream/master'
* remotes/upstream/master:
more recycle fixes for plaintext
fix recycle symbol when using plaintext editor
add links to wall, photos, events, etc to aside on networkpage, fixes in css
* master:
Diffstat (limited to 'mod/share.php')
-rwxr-xr-x | mod/share.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/share.php b/mod/share.php index f6c025e3c..47bb851a4 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]' . "\n"; if($r[0]['title']) $o .= '[b]' . $r[0]['title'] . '[/b]' . "\n"; $o .= $r[0]['body'] . "\n"; |