diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-25 16:55:18 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-25 16:55:18 -0700 |
commit | dafe0a55471c08120c5d34f263aa0d5e53cc10b7 (patch) | |
tree | 0074fdf60a73e9510132826218108c7f039c9036 /include/text.php | |
parent | 59a9f6bf026e533e0702c503be1ce046c032d68f (diff) | |
parent | 859195d07af57af072c4aa1c8235e00478ef5599 (diff) | |
download | volse-hubzilla-dafe0a55471c08120c5d34f263aa0d5e53cc10b7.tar.gz volse-hubzilla-dafe0a55471c08120c5d34f263aa0d5e53cc10b7.tar.bz2 volse-hubzilla-dafe0a55471c08120c5d34f263aa0d5e53cc10b7.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'include/text.php')
-rw-r--r-- | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index 8a65be0d5..d81b59d75 100644 --- a/include/text.php +++ b/include/text.php @@ -2846,7 +2846,7 @@ function item_url_replace($channel,&$item,$old,$new,$oldnick = '') { */ function sanitise_acl(&$item) { if (strlen($item)) - $item = '<' . notags(trim($item)) . '>'; + $item = '<' . notags(trim(urldecode($item))) . '>'; else unset($item); } |