Add separator when listing downtimes in the detail view

fixes #9046
This commit is contained in:
Johannes Meyer 2015-04-14 09:20:43 +02:00
parent 1f0940c8e8
commit 9ef414c9ed
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ foreach ($object->downtimes as $downtime) {
$delDowntimeForm->populate(array('downtime_id' => $downtime->id));
echo $delDowntimeForm;
} ?>
<span class="sr-only"><?= $this->translate('Downtime'); ?></span><?= $state; ?><?= str_replace(array('\r\n', '\n'), '<br>', $commentText); ?>
<span class="sr-only"><?= $this->translate('Downtime'); ?></span><?= $state; ?> - <?= str_replace(array('\r\n', '\n'), '<br>', $commentText); ?>
</td>
</tr>
<?php } // endforeach ?>