1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2026-01-08 17:09:15 +00:00

Merge branch 'func-missing-quotes' of JustAMacUser/tt-rss into master

This commit is contained in:
fox
2017-12-30 06:12:22 +00:00
committed by Gogs

View File

@@ -728,7 +728,7 @@
// this is used for user http parameters unless HTML code is actually needed
function clean($param) {
if (is_array($param)) {
return array_map(strip_tags, $param);
return array_map("strip_tags", $param);
} else if (is_string($param)) {
return strip_tags($param);
} else {