mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 15:54:03 +02:00
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')
|
array('style' => 'font-weight: normal')
|
||||||
) ?>)</span>
|
) ?>)</span>
|
||||||
<?php endif ?>
|
<?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>
|
</td>
|
||||||
<?php foreach($this->extraColumns as $col): ?>
|
<?php foreach($this->extraColumns as $col): ?>
|
||||||
<td><?= $this->escape($host->$col) ?></td>
|
<td><?= $this->escape($host->$col) ?></td>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user