diff --git a/modules/monitoring/application/views/helpers/Perfdata.php b/modules/monitoring/application/views/helpers/Perfdata.php index 2a5477cac..4ec24fe41 100644 --- a/modules/monitoring/application/views/helpers/Perfdata.php +++ b/modules/monitoring/application/views/helpers/Perfdata.php @@ -82,7 +82,8 @@ class Zend_View_Helper_Perfdata extends Zend_View_Helper_Abstract $result = $perfdata; } if (! empty($table)) { - $result = '' . implode("\n", $table) . '
' . $result; + // TODO: What if we have both? And should we trust sprintf-style placeholders in perfdata titles? + $result = '' . implode("\n", $table) . '
'; } return $result;