blob: eb1981053850cccb47d07d9661d3874a04b188cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<tr>
<td width="20">
<? if ($comments_admin): ?>
<input type="CHECKBOX" name="mark_comments[]" value="<?=$comment['comment_id']?>" <?=tooltip(_("Diesen Kommentar zum Löschen vormerken"),false)?>>
<? endif ?>
</td>
<td>
<div style="display: inline; color: #888888; font-size: 0.8em;">#<?= $index + 1 ?> - </div>
<a href="<?= URLHelper::getLink('dispatch.php/profile?username=' . $comment[2]) ?>" style="font-weight: bold; color: #888888; font-size: 0.8em;">
<?= htmlReady($comment[1]) ?>
</a>
<div style="display: inline; color: #888888; font-size: 0.8em; float: right;">
<?= reltime($comment[3]) ?>
</div>
<br>
<?= formatReady($comment[0]) ?>
</td>
<td width="20">
<? if ($comments_admin): ?>
<?= Icon::create('trash', 'clickable', ['title' => _('Kommentar entfernen')])->asInput(['name'=>'news_delete_comment_'.$comment['comment_id']]) ?>
<? endif ?>
</td>
</tr>
|