diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-11-26 19:33:03 -0800 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-11-26 19:33:03 -0800 |
| commit | e8fb773b68335e955602c0d912e13c0f5ba23d58 (patch) | |
| tree | 79196351e51137a1bd19e68b1d134e4d1ae8bfee /modules/organize | |
| parent | e0e882baabe9d4436c12bd57f903159c3b0274d9 (diff) | |
Update all portable where clauses to the new Kohana 2.4 format.
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 740c2521..1ccb942c 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("type" => "album")) as $child): ?> + <? foreach ($album->children(null, 0, array(array("type", "=", "album"))) as $child): ?> <? if ($selected && $child->contains($selected)): ?> <?= View::factory("organize_tree.html", array("selected" => $selected, "album" => $child)); ?> <? else: ?> |
