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

This reverts commit 229e266daf4d57a1052ff69ecb132575bcd40941.

The new line does not help for improving the layout but makes it more confusing.
This commit is contained in:
Eric Lippmann 2015-05-18 14:36:35 +02:00
parent e49f938f56
commit 13a38c9d18

View File

@ -44,11 +44,7 @@ foreach ($object->comments as $comment) {
?>
<tr>
<th>
<?= $this->escape($comment->author) ?>
<br>
<?= $this->timeAgo($comment->timestamp) ?>
</th>
<th><?= $this->escape($comment->author); ?> (<?= $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;