aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-10-23 17:52:17 -0700
committerMario <mario@mariovavti.com>2017-10-24 10:26:23 +0200
commitccc8ff107e61de0fb86961f406bebd67348119b6 (patch)
tree7744aa6fa2e3ab95783dbe117744906df9da8219 /include
parent2c07a92ad7961e345a93d8c18043c6213c3e974c (diff)
downloadvolse-hubzilla-ccc8ff107e61de0fb86961f406bebd67348119b6.tar.gz
volse-hubzilla-ccc8ff107e61de0fb86961f406bebd67348119b6.tar.bz2
volse-hubzilla-ccc8ff107e61de0fb86961f406bebd67348119b6.zip
acl encoding issues
Diffstat (limited to 'include')
-rw-r--r--include/text.php2
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);
}