diff options
author | zottel <github@zottel.net> | 2013-12-12 13:32:11 +0100 |
---|---|---|
committer | zottel <github@zottel.net> | 2013-12-12 13:32:11 +0100 |
commit | 3a11980e495fc42c9fbf178480d16380f6cca69a (patch) | |
tree | d5231730ba3fe285586a2035dcd35b995e3d0471 | |
parent | 303324cdff3f7c8bc83fae89256a2133939944b2 (diff) | |
download | volse-hubzilla-3a11980e495fc42c9fbf178480d16380f6cca69a.tar.gz volse-hubzilla-3a11980e495fc42c9fbf178480d16380f6cca69a.tar.bz2 volse-hubzilla-3a11980e495fc42c9fbf178480d16380f6cca69a.zip |
htmspecialchars_decode only takes one argument.
-rw-r--r-- | include/network.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/network.php b/include/network.php index 225b215fe..7446c2384 100644 --- a/include/network.php +++ b/include/network.php @@ -582,7 +582,7 @@ function scale_external_images($s, $include_link = true, $scale_replace = false) $a = get_app(); // Picture addresses can contain special characters - $s = htmlspecialchars_decode($s, ENT_COMPAT,'UTF-8'); + $s = htmlspecialchars_decode($s, ENT_COMPAT); $matches = null; $c = preg_match_all('/\[img(.*?)\](.*?)\[\/img\]/ism',$s,$matches,PREG_SET_ORDER); |