mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-08-01 12:40:45 -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)
15 lines
499 B
PHP
15 lines
499 B
PHP
<?php defined("SYSPATH") or die("No direct script access.") ?>
|
|
<ul class="jqueryFileTree" style="display: none">
|
|
<? foreach ($children as $item): ?>
|
|
<? if ($item->type == "album"): ?>
|
|
<li class="directory collapsed treeitem" id="<?= $item->id?>">
|
|
<a href="#" rel="<?= $item->id?>"><?= $item->title?></a>
|
|
</li>
|
|
<? else: ?>
|
|
<li class="file item treeitem" id="<?= $item->id?>">
|
|
<a href="#" rel="<?= $item->id?>"><?= $item->title?></a>
|
|
</li>
|
|
<? endif ?>
|
|
<? endforeach ?>
|
|
</ul>
|