aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorZach Prezkuta <fermion@gmx.com>2012-07-05 20:39:22 -0600
committerZach Prezkuta <fermion@gmx.com>2012-07-05 20:39:22 -0600
commit47c7fd89ba76732c779cc79648a2c7ab2e914041 (patch)
treee9d6cea17c2f536003ee2afb96ff811431519635 /include
parenta71365d5665fd3ed51ea9bd44b9a4571e6d3ad69 (diff)
downloadvolse-hubzilla-47c7fd89ba76732c779cc79648a2c7ab2e914041.tar.gz
volse-hubzilla-47c7fd89ba76732c779cc79648a2c7ab2e914041.tar.bz2
volse-hubzilla-47c7fd89ba76732c779cc79648a2c7ab2e914041.zip
my php thinks this is a typo
Diffstat (limited to 'include')
-rw-r--r--include/bb2diaspora.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/bb2diaspora.php b/include/bb2diaspora.php
index 75dadb84c..042177fd9 100644
--- a/include/bb2diaspora.php
+++ b/include/bb2diaspora.php
@@ -45,7 +45,7 @@ function diaspora2bb($s) {
// $s = str_replace('&#42;','*',$s);
// protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands
- $s = str_replace('&#x2672;',html_entities_decode('&#x2672;',ENT_QUOTES,'UTF-8'),$s);
+ $s = str_replace('&#x2672;',html_entity_decode('&#x2672;',ENT_QUOTES,'UTF-8'),$s);
// Convert everything that looks like a link to a link
$s = preg_replace("/([^\]\=]|^)(https?\:\/\/)([a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism", '$1[url=$2$3]$2$3[/url]',$s);