Browse Source

code corrections

euromark 13 years ago
parent
commit
11f0b60ac4
1 changed files with 1 additions and 2 deletions
  1. 1 2
      Lib/Utility/Utility.php

+ 1 - 2
Lib/Utility/Utility.php

@@ -272,8 +272,7 @@ class Utility {
 		foreach ($array as $key => $value) {
 			if (is_array($value)) {
 				$result = array_merge($result, self::arrayFlatten($value));
-			}
-			else {
+			} else {
 				$result[$key] = $value;
 			}
 		}