Merge pull request #518 from owncloud/fix_property_cache

use correct path for property cache
This commit is contained in:
Björn Schießle 2012-11-20 14:06:59 -08:00
commit 8f2209680a
1 changed files with 1 additions and 1 deletions

View File

@ -146,7 +146,7 @@ class OC_Connector_Sabre_Directory extends OC_Connector_Sabre_Node implements Sa
$nodes = array(); $nodes = array();
foreach($folder_content as $info) { foreach($folder_content as $info) {
$node = $this->getChild($info['name'], $info); $node = $this->getChild($info['name'], $info);
$node->setPropertyCache($properties[$this->path.'/'.$info['name']]); $node->setPropertyCache($properties[$path.'/'.$info['name']]);
$nodes[] = $node; $nodes[] = $node;
} }
return $nodes; return $nodes;