CSS: Use <br> instead of <br /> in the list/hosts view script

refs #5543
This commit is contained in:
Eric Lippmann 2015-09-24 12:00:53 +02:00
parent 93c05c4297
commit dd0c81e344
1 changed files with 2 additions and 2 deletions

View File

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