mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-08 22:19:08 -04:00
16 lines
562 B
PHP
16 lines
562 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<ul>
|
|
<?php foreach ($entries as $entry): ?>
|
|
<li class="<?= log::severity_class($entry->severity) ?>" style="direction: ltr">
|
|
<?php if ($entry->user->guest): ?>
|
|
</span><?= html::clean($entry->user->name) ?></span>
|
|
<?php else: ?>
|
|
<a href="<?= user_profile::url($entry->user->id) ?>"><?= html::clean($entry->user->name) ?></a>
|
|
<?php endif ?>
|
|
<?= gallery::date_time($entry->timestamp) ?>
|
|
<?= $entry->message ?>
|
|
<?= $entry->html ?>
|
|
</li>
|
|
<?php endforeach ?>
|
|
</ul>
|