Files
gallery3/modules/comment/views/comment.html.php

18 lines
588 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<li id="gComment-<?= $comment->id; ?>">
<p class="gAuthor">
<a href="#">
2009-01-10 19:13:00 +00:00
<img src="<?= $comment->author()->avatar_url(40, $theme->url("images/avatar.jpg", true)) ?>"
class="gAvatar"
alt="<?= p::clean($comment->author_name()) ?>"
2009-01-10 19:13:00 +00:00
width="40"
height="40" />
</a>
<?= t("on ") . date("Y-M-d H:i:s", $comment->created) ?>
<a href="#"><?= p::clean($comment->author_name()) ?></a> <?= t("said") ?>
2008-11-15 16:52:23 +00:00
</p>
<div>
<?= p::clean($comment->text) ?>
2008-11-15 16:52:23 +00:00
</div>
</li>