From 56c22162952fe30a20578891376c83f81987a3dc Mon Sep 17 00:00:00 2001 From: JustAMacUser Date: Sat, 30 Dec 2017 01:00:56 -0500 Subject: Add missing quotes to array_map. --- include/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include') 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 { -- cgit v1.2.3