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

View File

@ -65,7 +65,7 @@ foreach ($object->downtimes as $downtime) {
$delDowntimeForm->populate(array('downtime_id' => $downtime->id)); $delDowntimeForm->populate(array('downtime_id' => $downtime->id));
echo $delDowntimeForm; 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> </td>
</tr> </tr>
<?php } // endforeach ?> <?php } // endforeach ?>