diff --git a/modules/monitoring/application/views/helpers/Perfdata.php b/modules/monitoring/application/views/helpers/Perfdata.php index 24a9c8f10..0ed5ccb95 100644 --- a/modules/monitoring/application/views/helpers/Perfdata.php +++ b/modules/monitoring/application/views/helpers/Perfdata.php @@ -61,7 +61,7 @@ class Zend_View_Helper_Perfdata extends Zend_View_Helper_Abstract $headers[$column] = $labels[$column]; } } - $table = array('' . implode('', $headers) . ''); + $table = array('' . implode('', $headers) . ''); foreach ($pieChartData as $perfdata) { if ($compact && $perfdata->isVisualizable()) { $results[] = $perfdata->asInlinePie($color)->render(); @@ -85,9 +85,10 @@ class Zend_View_Helper_Perfdata extends Zend_View_Helper_Abstract ); } } - $table []= '' . implode('', $data) . ''; + $table []= '' . implode('', $data) . ''; } } + $table[] = ''; if ($limit > 0) { $count = $compact ? count($results) : count($table); if ($count > $limit) {