diff options
author | friendica <info@friendica.com> | 2012-07-04 22:44:04 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-07-04 22:44:04 -0700 |
commit | e29dd081cabe5861895ff2e16c4354caad7b1b13 (patch) | |
tree | ebab14b454b1b0a77ef60f0b6db62a9ca206b3ba /include | |
parent | f40b056e3b5e55d911d1689017084ef89d96d09a (diff) | |
download | volse-hubzilla-e29dd081cabe5861895ff2e16c4354caad7b1b13.tar.gz volse-hubzilla-e29dd081cabe5861895ff2e16c4354caad7b1b13.tar.bz2 volse-hubzilla-e29dd081cabe5861895ff2e16c4354caad7b1b13.zip |
render the recycle symbol correctly on Diaspora reshares
Diffstat (limited to 'include')
-rwxr-xr-x | include/diaspora.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/diaspora.php b/include/diaspora.php index a398007e1..5ab0ee674 100755 --- a/include/diaspora.php +++ b/include/diaspora.php @@ -844,7 +844,7 @@ function diaspora_reshare($importer,$xml) { else $details = $orig_author; - $prefix = '♲ ' . $details . "\n"; + $prefix = html_entity_decode("♲ ", ENT_QUOTES, 'UTF-8') . $details . "\n"; // allocate a guid on our system - we aren't fixing any collisions. |