Skip to content

Commit

Permalink
fix #467 on ACL allowed urls with html special chars such as & conver…
Browse files Browse the repository at this point in the history
…ted to &
  • Loading branch information
antonraharja committed Jul 25, 2015
1 parent 61258b9 commit 4c07cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/plugin/core/acl/fn.php
Expand Up @@ -123,7 +123,7 @@ function acl_geturl($acl_id) {
$urls = explode(',', $list[0]['url']);
foreach ($urls as $key => $val) {
if (trim($val)) {
$ret[] = trim($val);
$ret[] = trim(htmlspecialchars_decode($val));
}
}

Expand Down

0 comments on commit 4c07cb4

Please sign in to comment.