Show when an object's dowtime was added

refs #6778
This commit is contained in:
Eric Lippmann 2015-05-18 14:39:36 +02:00
parent 13a38c9d18
commit 9ffeffdf09
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ foreach ($object->downtimes as $downtime) {
?>
<tr>
<th><?= $this->escape($downtime->author_name); ?></th>
<th><?= $this->escape($downtime->author_name); ?> (<?= $this->timeAgo($downtime->entry_time); ?>)</th>
<td data-base-target="_self">
<?php if (isset($delDowntimeForm)) { // Form is unset if the current user lacks the respective permission
$delDowntimeForm = clone $delDowntimeForm;