1
0
This repository has been archived on 2021-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
gallery3-contrib/3.0/themes/browny_wind/views/user_profile_comments.html.php

22 lines
652 B
PHP

<?php defined("SYSPATH") or die("No direct script access.") ?>
<div id="g-comment-detail">
<ul>
<? foreach ($comments as $comment): ?>
<li id="g-comment-<?= $comment->id ?>">
<p class="g-author">
<a href="<?= $comment->item()->url() ?>">
<?= $comment->item()->thumb_img(array(), 70) ?>
</a>
<?= t("<i><strong>on</strong> %date <strong>for</strong> %title</i> ",
array("date" => gallery::date_time($comment->created),
"title" => $comment->item()->title)); ?>
</p>
<hr />
<div>
<?= nl2br(html::purify($comment->text)) ?>
</div>
</li>
<? endforeach ?>
</ul>
</div>