From ab287d2ba481c29a08853e2eadd3655c01ca135f Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 14 Jan 2013 22:04:31 +0100 Subject: [PATCH] Move { to same line --- lib/util.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/util.php b/lib/util.php index 225e70d765..374baa43db 100755 --- a/lib/util.php +++ b/lib/util.php @@ -467,8 +467,7 @@ class OC_Util { * @return array with sanitized strings or a single sanitized string, depends on the input parameter. */ public static function sanitizeHTML( &$value ) { - if (is_array($value) || is_object($value)) - { + if (is_array($value) || is_object($value)) { array_walk_recursive($value, 'OC_Util::sanitizeHTML'); } else { $value = htmlentities($value, ENT_QUOTES, 'UTF-8'); //Specify encoding for PHP<5.4