summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorJustAMacUser <[email protected]>2017-12-30 01:00:56 -0500
committerJustAMacUser <[email protected]>2017-12-30 01:00:56 -0500
commit56c22162952fe30a20578891376c83f81987a3dc (patch)
treeec5d04684de8f9528852bb5ae61c475a24dcf8d7 /include
parent6062e563ff60f48641e25b67838e37a73cbda2f8 (diff)
Add missing quotes to array_map.
Diffstat (limited to 'include')
-rw-r--r--include/functions.php2
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 {