setup: check disabled functions more precisely than using a string match

This commit is contained in:
zotlabs
2017-01-05 14:17:56 -08:00
parent dfede52048
commit 2312302dea
2 changed files with 13 additions and 2 deletions

View File

@@ -3120,3 +3120,9 @@ function cleanup_bbcode($body) {
return $body;
}
// callback for array_walk
function array_trim(&$v,$k) {
$v = trim($v);
}