Skip to content

Commit

Permalink
monitoring: Remove strong and small tags in the host detail
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 25, 2015
1 parent cfee0cc commit 44b2b87
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -5,14 +5,14 @@ use Icinga\Module\Monitoring\Object\Host;
<table>
<tr>
<td class="state-col state <?= Host::getStateText($object->host_state); ?><?= $object->host_handled ? ' handled' : ''; ?>">
<strong><?= Host::getStateText($object->host_state, true); ?></strong><br>
<?= Host::getStateText($object->host_state, true); ?><br>
<?= $this->timeSince($object->host_last_state_change); ?>
</td>
<td>
<?= $this->iconImage()->host($object) ?>
<strong><?= $this->escape($object->host_display_name); ?></strong>
<><?= $this->escape($object->host_display_name); ?>
<?php if ($object->host_display_name !== $object->host_name): ?>
<small>(<?= $this->escape($object->host_name); ?>)</small>
(<?= $this->escape($object->host_name); ?>)
<?php endif ?>
<?php if ($object->host_address && $object->host_address !== $object->host_name): ?>
<br>
Expand Down

0 comments on commit 44b2b87

Please sign in to comment.