From 62f58048e9a3e3e9cea8173ad6cae79e608d899c Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Wed, 4 Nov 2015 14:34:01 +0100 Subject: [PATCH] monitoring: Use blockquote for plugin output refs #5543 --- modules/monitoring/application/views/helpers/PluginOutput.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/monitoring/application/views/helpers/PluginOutput.php b/modules/monitoring/application/views/helpers/PluginOutput.php index dec3ca504..02b457b49 100644 --- a/modules/monitoring/application/views/helpers/PluginOutput.php +++ b/modules/monitoring/application/views/helpers/PluginOutput.php @@ -49,7 +49,7 @@ class Zend_View_Helper_PluginOutput extends Zend_View_Helper_Abstract ); } if (! $raw) { - $output = '
' . $output . '
'; + $output = '
' . $output . '
'; } $output = $this->fixLinks($output); return $output;