diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-11-26 19:36:57 -0800 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-11-26 19:36:57 -0800 |
| commit | a3d904bcbab7cb153c2b617fc4389175ed00a4fc (patch) | |
| tree | 91e1879c2815e388aaf5c16d707947a25251bd9c /modules/organize | |
| parent | e8fb773b68335e955602c0d912e13c0f5ba23d58 (diff) | |
ORM::find_all() now uses null as the default value for offset.
Diffstat (limited to 'modules/organize')
| -rw-r--r-- | modules/organize/views/organize_tree.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/organize/views/organize_tree.html.php b/modules/organize/views/organize_tree.html.php index 1ccb942c..c5257956 100644 --- a/modules/organize/views/organize_tree.html.php +++ b/modules/organize/views/organize_tree.html.php @@ -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: ?> |
