diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2013-01-14 22:04:31 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2013-01-14 22:04:31 +0100 |
commit | ab287d2ba481c29a08853e2eadd3655c01ca135f (patch) | |
tree | e1fb8e9189090b8ad9cfe49fd9c16dd3b2753445 /lib | |
parent | c845e756930a43aa0be8b07f3d398c2c1d8f36e8 (diff) | |
download | nextcloud-server-ab287d2ba481c29a08853e2eadd3655c01ca135f.tar.gz nextcloud-server-ab287d2ba481c29a08853e2eadd3655c01ca135f.zip |
Move { to same line
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/util.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/util.php b/lib/util.php index 225e70d7658..374baa43dbe 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 |