Skip to content
Snippets Groups Projects
Commit 0bf2a3e6 authored by Björn Schießle's avatar Björn Schießle
Browse files

while loop not needed because of recursive call of put()

parent dc927bd3
No related branches found
No related tags found
No related merge requests found
...@@ -77,15 +77,11 @@ class OC_FileCache{ ...@@ -77,15 +77,11 @@ class OC_FileCache{
return; return;
} }
// add parent directories to the file cache if they does not exist yet. // add parent directory to the file cache if it does not exist yet.
if ($parent == -1 && $fullpath != $root) { if ($parent == -1 && $fullpath != $root) {
$dirparts = explode(DIRECTORY_SEPARATOR, dirname($path)); $parentDir = substr(dirname($path), 0, strrpos(dirname($path), DIRECTORY_SEPARATOR));
$part = ''; self::scanFile($parentDir);
while ($parent == -1) { $parent = self::getParentId($fullpath);
self::scanFile( DIRECTORY_SEPARATOR.$part);
$parent = self::getParentId($fullpath);
$part = array_shift($dirparts);
}
} }
if(!isset($data['size']) or !isset($data['mtime'])){//save incomplete data for the next time we write it if(!isset($data['size']) or !isset($data['mtime'])){//save incomplete data for the next time we write it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment