Upgrading the function html_escape() - readability improvement.
diff --git a/system/core/Common.php b/system/core/Common.php
index 74864ec..93f0f0a 100644
--- a/system/core/Common.php
+++ b/system/core/Common.php
@@ -701,7 +701,9 @@
 		$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);
 	}
 }