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

refs #8248
This commit is contained in:
Eric Lippmann 2015-01-19 14:18:46 +01:00
parent 10ebc3432c
commit f56ffd3426

View File

@ -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>