mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
ORM::find_all() now uses null as the default value for offset.
This commit is contained in:
@@ -8,7 +8,7 @@
|
||||
<?= html::clean($album->title) ?>
|
||||
</span>
|
||||
<ul>
|
||||
<? foreach ($album->children(null, 0, array(array("type", "=", "album"))) as $child): ?>
|
||||
<? foreach ($album->children(null, null, array(array("type", "=", "album"))) as $child): ?>
|
||||
<? if ($selected && $child->contains($selected)): ?>
|
||||
<?= View::factory("organize_tree.html", array("selected" => $selected, "album" => $child)); ?>
|
||||
<? else: ?>
|
||||
|
||||
Reference in New Issue
Block a user