diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-08-29 11:29:38 -0700 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-29 11:29:38 -0700 |
| commit | 775987dff99b4459d6fef255d67da3bd6cdeb7c5 (patch) | |
| tree | 622cc4576217b19611ddc2b186afa739fb16ae93 /modules/organize/views | |
| parent | 4408ed0684ad8b1a2e1623ef2103fdad8ae5d895 (diff) | |
Fix a bug where organize doesn't properly generate the tree at the root album.
Diffstat (limited to 'modules/organize/views')
| -rw-r--r-- | modules/organize/views/organize_tree.html.php | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/organize/views/organize_tree.html.php b/modules/organize/views/organize_tree.html.php index cf957fe6..36f900ac 100644 --- a/modules/organize/views/organize_tree.html.php +++ b/modules/organize/views/organize_tree.html.php @@ -10,8 +10,7 @@ <ul class="ui-icon-plus"> <? endforeach ?> - <? if ($parent->id == $album->parent_id): ?> - <? foreach ($parent->children(null, 0, array("type" => "album")) as $peer): ?> + <? foreach ($peers as $peer): ?> <li class="gOrganizeAlbum ui-icon-left <?= access::can("edit", $peer) ? "" : "gViewOnly" ?>" ref="<?= $peer->id ?>"> <span class="ui-icon <?= $peer->id == $album->id ? "ui-icon-minus" : "ui-icon-plus" ?>"> @@ -38,7 +37,6 @@ <? endif ?> </li> <? endforeach ?> - <? endif ?> <? foreach ($parents as $parent): ?> </ul> |
