Browse Source

Move { to same line

tags/v5.0.0alpha1
Lukas Reschke 11 years ago
parent
commit
ab287d2ba4
1 changed files with 1 additions and 2 deletions
  1. 1
    2
      lib/util.php

+ 1
- 2
lib/util.php View File

@@ -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

Loading…
Cancel
Save