summaryrefslogtreecommitdiffstats
path: root/lib/foldermapper.php
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2012-06-13 17:23:42 -0400
committerAlessandro Cosentino <cosenal@gmail.com>2012-06-13 17:23:42 -0400
commitefd3ac96c8e8a02730ca8d6b7e31363c1bd0d0db (patch)
tree785b37fb52c0867a24e6784f2254306c813ca16f /lib/foldermapper.php
parentd360bbbbea8e226bda2c4c0bb553c5cb9feb2fa1 (diff)
prints name of folders in left view
Diffstat (limited to 'lib/foldermapper.php')
-rw-r--r--lib/foldermapper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/foldermapper.php b/lib/foldermapper.php
index 5aecc2e3b..d6dcea632 100644
--- a/lib/foldermapper.php
+++ b/lib/foldermapper.php
@@ -31,7 +31,7 @@ class OC_News_FolderMapper {
$result = $stmt->execute(array($this->userid, 0));
while( $row = $result->fetchRow()){
- $child = new OC_News_Folder($row['id'], $row['name']);
+ $child = new OC_News_Folder($row['name'], $row['id']);
$root->addChild($child);
}