summaryrefslogtreecommitdiff
path: root/modules/organize
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-11-26 19:33:03 -0800
committerBharat Mediratta <bharat@menalto.com>2009-11-26 19:33:03 -0800
commite8fb773b68335e955602c0d912e13c0f5ba23d58 (patch)
tree79196351e51137a1bd19e68b1d134e4d1ae8bfee /modules/organize
parente0e882baabe9d4436c12bd57f903159c3b0274d9 (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.php2
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: ?>