monitoring: Use blockquote for plugin output

refs #5543
This commit is contained in:
Eric Lippmann 2015-11-04 14:34:01 +01:00
parent 9bb2961a77
commit 62f58048e9
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class Zend_View_Helper_PluginOutput extends Zend_View_Helper_Abstract
);
}
if (! $raw) {
$output = '<pre class="plugin-output">' . $output . '</pre>';
$output = '<blockquote>' . $output . '</blockquote>';
}
$output = $this->fixLinks($output);
return $output;