monitoring: Do not strip_tags when viewing host output in the host list

refs #8248
This commit is contained in:
Eric Lippmann 2015-01-19 14:17:59 +01:00
parent ae927cf043
commit 10ebc3432c
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ if ($hosts->count() === 0) {
array('style' => 'font-weight: normal')
) ?>)</span>
<?php endif ?>
<p class="pluginoutput"><?= $this->escape(substr(strip_tags($host->host_output), 0, 10000)) ?></p>
<p class="pluginoutput"><?= $this->escape(substr($host->host_output, 0, 10000)) ?></p>
</td>
<?php foreach($this->extraColumns as $col): ?>
<td><?= $this->escape($host->$col) ?></td>