Fix intendation in MultiController

Use spaces instead of tabs
This commit is contained in:
Matthias Jentsch 2014-06-25 15:25:54 +02:00
parent d49f30ff77
commit ae99dd39fd

View File

@ -193,13 +193,12 @@ class Monitoring_MultiController extends Controller
private function getUniqueValues($values, $key) private function getUniqueValues($values, $key)
{ {
$unique = array(); $unique = array();
foreach ($values as $value) foreach ($values as $value) {
{ if (is_array($value)) {
if (is_array($value)) { $unique[$value[$key]] = $value[$key];
$unique[$value[$key]] = $value[$key]; } else {
} else { $unique[$value->$key] = $value->$key;
$unique[$value->$key] = $value->$key; }
}
} }
return $unique; return $unique;
} }