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

16 lines
568 B
PHP
Raw Normal View History

<?php defined("SYSPATH") or die("No direct script access.") ?>
<li id="gComment-<?= $comment->id; ?>">
<? $avatar = $theme->url("images/avatar.jpg") ?>
<? //if ($user->avatar($comment->author)): ?>
<? //$avatar = $theme->url("images/avatar.jpg") ?>
<? //endif ?>
<p class="gAuthor">
<a href="#"><img src="<?= $avatar ?>" class="gAvatar" alt="<?= $comment->author ?>" /></a>
<?= _("on ") . date("Y-M-d H:i:s", $comment->created) ?>
<a href="#"><?= $comment->author ?></a> <?= _("said") ?>
2008-11-15 16:52:23 +00:00
</p>
<div>
<?= $comment->text ?>
2008-11-15 16:52:23 +00:00
</div>
</li>