monitoring: Remove trailing semicolons from inline echo tags in the host detail
refs #5543
This commit is contained in:
parent
8e63d89204
commit
cf36d288a3
|
@ -4,21 +4,21 @@ use Icinga\Module\Monitoring\Object\Host;
|
||||||
?>
|
?>
|
||||||
<table>
|
<table>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="state-col state <?= Host::getStateText($object->host_state); ?><?= $object->host_handled ? ' handled' : ''; ?>">
|
<td class="state-col state <?= Host::getStateText($object->host_state) ?><?= $object->host_handled ? ' handled' : '' ?>">
|
||||||
<?= Host::getStateText($object->host_state, true); ?><br>
|
<?= Host::getStateText($object->host_state, true) ?><br>
|
||||||
<?= $this->timeSince($object->host_last_state_change); ?>
|
<?= $this->timeSince($object->host_last_state_change) ?>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<?= $this->iconImage()->host($object) ?>
|
<?= $this->iconImage()->host($object) ?>
|
||||||
<?= $this->escape($object->host_display_name); ?>
|
<?= $this->escape($object->host_display_name) ?>
|
||||||
<?php if ($object->host_display_name !== $object->host_name): ?>
|
<?php if ($object->host_display_name !== $object->host_name): ?>
|
||||||
(<?= $this->escape($object->host_name); ?>)
|
(<?= $this->escape($object->host_name) ?>)
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
|
<?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
|
||||||
<br>
|
<br>
|
||||||
<?= $this->escape($object->host_address); ?>
|
<?= $this->escape($object->host_address) ?>
|
||||||
<?php endif ?>
|
<?php endif ?>
|
||||||
<?= $this->render('partials/host/statusicons.phtml'); ?>
|
<?= $this->render('partials/host/statusicons.phtml') ?>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Reference in New Issue