mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-19 19:09:13 -04:00
1) drop unnecessary semicolon 2) start with <?php for extra security in the case that the server itself doesn't have short_tags enabled (the app won't work, but we need to make sure that we're still secure)
11 lines
275 B
PHP
11 lines
275 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<li id="gComment-<?= $comment->id; ?>">
|
|
<p>
|
|
<a href="#" class="gAuthor"><?= $comment->author ?></a>
|
|
<?= date("Y-M-d H:i:s", $comment->created) ?>
|
|
</p>
|
|
<div>
|
|
<?= $comment->text ?>
|
|
</div>
|
|
</li>
|