diff --git a/modules/monitoring/application/controllers/MultiController.php b/modules/monitoring/application/controllers/MultiController.php index 69372a106..28661d54b 100644 --- a/modules/monitoring/application/controllers/MultiController.php +++ b/modules/monitoring/application/controllers/MultiController.php @@ -193,13 +193,12 @@ class Monitoring_MultiController extends Controller private function getUniqueValues($values, $key) { $unique = array(); - foreach ($values as $value) - { - if (is_array($value)) { - $unique[$value[$key]] = $value[$key]; - } else { - $unique[$value->$key] = $value->$key; - } + foreach ($values as $value) { + if (is_array($value)) { + $unique[$value[$key]] = $value[$key]; + } else { + $unique[$value->$key] = $value->$key; + } } return $unique; }