summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--system/core/Common.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/system/core/Common.php b/system/core/Common.php
index 74864ec56..93f0f0a99 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -701,7 +701,9 @@ if ( ! function_exists('html_escape'))
$double_encode = (bool) $double_encode;
return is_array($var)
- ? ($double_encode === FALSE ? array_map('html_escape', $var, array_fill(0, count($var), FALSE)) : array_map('html_escape', $var))
+ ? ($double_encode === FALSE
+ ? array_map('html_escape', $var, array_fill(0, count($var), FALSE))
+ : array_map('html_escape', $var))
: htmlspecialchars($var, ENT_QUOTES, config_item('charset'), $double_encode);
}
}