Add new line between comment author and creation time in the detail views

refs #6778
This commit is contained in:
Eric Lippmann 2015-04-15 15:40:40 +02:00
parent e500715bda
commit 229e266daf
1 changed files with 5 additions and 1 deletions

View File

@ -44,7 +44,11 @@ foreach ($object->comments as $comment) {
?>
<tr>
<th><?= $this->escape($comment->author); ?> (<?= $this->timeAgo($comment->timestamp); ?>)</th>
<th>
<?= $this->escape($comment->author) ?>
<br>
<?= $this->timeAgo($comment->timestamp) ?>
</th>
<td data-base-target="_self">
<?php if (isset($delCommentForm)) { // Form is unset if the current user lacks the respective permission
$delCommentForm = clone $delCommentForm;