diff options
author | Zach Prezkuta <fermion@gmx.com> | 2012-07-05 20:39:22 -0600 |
---|---|---|
committer | Zach Prezkuta <fermion@gmx.com> | 2012-07-05 20:39:22 -0600 |
commit | 47c7fd89ba76732c779cc79648a2c7ab2e914041 (patch) | |
tree | e9d6cea17c2f536003ee2afb96ff811431519635 /include | |
parent | a71365d5665fd3ed51ea9bd44b9a4571e6d3ad69 (diff) | |
download | volse-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.php | 2 |
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('*','*',$s); // protect the recycle symbol from turning into a tag, but without unescaping angles and naked ampersands - $s = str_replace('♲',html_entities_decode('♲',ENT_QUOTES,'UTF-8'),$s); + $s = str_replace('♲',html_entity_decode('♲',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); |