mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-15 17:25:57 +00:00
Add missing quotes to array_map.
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user