summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2012-08-15 18:03:32 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2012-08-15 18:03:32 +0200
commit4faac81356c070f609d80f473032a7ed5552b98a (patch)
treea34ba14bcf15ba4f5dac9657d59bc82fb5c1c734 /lib
parent084d70a217420b17ca3642f94599cd11f0d079af (diff)
fixed a bug that wouldnt let feeds show up nested in folders
Diffstat (limited to 'lib')
-rw-r--r--lib/foldermapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/foldermapper.php b/lib/foldermapper.php
index 33a14a0c4..af7d9244a 100644
--- a/lib/foldermapper.php
+++ b/lib/foldermapper.php
@@ -68,7 +68,7 @@ class FolderMapper {
while( $row = $result->fetchRow()){
$folderid = $row['id'];
$folder = new Folder($row['name'], $folderid);
- $children = self::childrenOf($folderid);
+ $children = self::childrenOfWithFeeds($folderid);
$folder->addChildren($children);
$collectionlist[] = $folder;
}