blob: d9d8bb7a806ce7a450f77b729dfdce3de5d5d7f5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<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')->asInput([
'name' => 'news_delete_comment_'.$comment['comment_id'],
'title' => _('Kommentar entfernen'),
]) ?>
<? endif ?>
</td>
</tr>
|