Skip to content

Commit

Permalink
CSS: Use <br> instead of <br /> in the list/hosts view script
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
lippserd committed Sep 24, 2015
1 parent 93c05c4 commit dd0c81e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/monitoring/application/views/scripts/list/hosts.phtml
Expand Up @@ -32,10 +32,10 @@ if (! $this->compact): ?>
<td class="state">
<strong><?= Host::getStateText($host->host_state, true) ?></strong>
<?php if ((int) $host->host_state !== 99): ?>
<br />
<br>
<?= $this->timeSince($host->host_last_state_change, $this->compact) ?>
<?php if ((int) $host->host_state > 0 && (int) $host->host_state_type === 0): ?>
<br />
<br>
<strong>Soft <?= $host->host_attempt ?></strong>
<?php endif ?>
<?php endif ?>
Expand Down

0 comments on commit dd0c81e

Please sign in to comment.