summaryrefslogtreecommitdiffstats
path: root/web/template/pkg_comments.php
blob: 20cd27876daf161a9e7d113eaa6759efe8dffa9c (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
27
<div class="pgbox">
<?php
while (list($indx, $carr) = each($comments)) { ?>
	<div class="comment-header"><?php
	if (canDeleteComment($carr['ID'], $atype, $SID)) {
		$durl = '<a href="pkgedit.php?del_Comment=1';
		$durl.= '&comment_id=' . $carr['ID'] . '&ID=' . $row['ID'];
		$durl.= '"><img src="images/x.png" border="0"';
		$durl.= ' alt="' . __("Delete comment") . '"></a> ';

		echo $durl;
	}

	if ($SID) {
		$carr['UserName'] = "<a href=\"account.php?Action=AccountInfo&amp;ID={$carr['UsersID']}\">{$carr['UserName']}</a>";
	}

	echo __('Comment by: %s on %s', $carr['UserName'], gmdate('r', $carr['CommentTS']));
?></div>
	<blockquote class="comment-body">
	<div>
<?php echo nl2br(htmlspecialchars($carr['Comments'])) ?>
	</div>
	</blockquote>
<?php
} ?>
</div>