monitoring: Do not strip_tags when viewing host output in the host list
refs #8248
This commit is contained in:
parent
ae927cf043
commit
10ebc3432c
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue