diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-23 17:52:17 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-23 17:52:17 -0700 |
commit | 52c1f79f2ec2ac4c417e8cca2008565891a5a0f6 (patch) | |
tree | 3fcb195c50bf0a8846eef750acdb353d9094ccd1 /include/text.php | |
parent | e67ff5c122087f878111ad99d1c3b2328b967ab2 (diff) | |
download | volse-hubzilla-52c1f79f2ec2ac4c417e8cca2008565891a5a0f6.tar.gz volse-hubzilla-52c1f79f2ec2ac4c417e8cca2008565891a5a0f6.tar.bz2 volse-hubzilla-52c1f79f2ec2ac4c417e8cca2008565891a5a0f6.zip |
acl encoding issues
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); } |