diff options
| author | fox <fox+git@fakecake.org> | 2017-12-30 06:12:22 +0000 |
|---|---|---|
| committer | Gogs <gogs@fake.local> | 2017-12-30 06:12:22 +0000 |
| commit | 96d8c40188b2a9aec3eef3d9a3c92cba6327d226 (patch) | |
| tree | ec5d04684de8f9528852bb5ae61c475a24dcf8d7 /include/functions.php | |
| parent | 6062e563ff60f48641e25b67838e37a73cbda2f8 (diff) | |
| parent | 56c22162952fe30a20578891376c83f81987a3dc (diff) | |
Merge branch 'func-missing-quotes' of JustAMacUser/tt-rss into master
Diffstat (limited to 'include/functions.php')
| -rw-r--r-- | include/functions.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/functions.php b/include/functions.php index a9786e49b..107a02843 100644 --- a/include/functions.php +++ b/include/functions.php @@ -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 { |