mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-27 07:44:04 +02:00
monitoring: Do not strip_tags when viewing service output in the service list
refs #8248
This commit is contained in:
parent
10ebc3432c
commit
f56ffd3426
@ -112,7 +112,7 @@ foreach ($services as $service):
|
||||
(<?= strtoupper(Host::getStateText($service->host_state, true)); ?>)
|
||||
<?php endif ?>
|
||||
</a><?php endif ?><br />
|
||||
<p class="pluginoutput"><?= $this->escape(substr(strip_tags($service->service_output), 0, 10000)); ?></p>
|
||||
<p class="pluginoutput"><?= $this->escape(substr($service->service_output, 0, 10000)); ?></p>
|
||||
</td>
|
||||
<?php foreach($this->extraColumns as $col): ?>
|
||||
<td><?= $this->escape($service->$col) ?></td>
|
||||
|
Loading…
x
Reference in New Issue
Block a user