Fix #2816 renaming shared files

This commit is contained in:
Michael Gapczynski 2013-05-01 20:29:07 -04:00
parent 2040f0af78
commit 04b7a9902d
1 changed files with 3 additions and 5 deletions

View File

@ -182,12 +182,10 @@ class Shared_Cache extends Cache {
*/
public function move($source, $target) {
if ($cache = $this->getSourceCache($source)) {
$targetPath = \OC_Share_Backend_File::getSourcePath(dirname($target));
if ($targetPath) {
$targetPath .= '/' . basename($target);
$cache->move($this->files[$source], $targetPath);
$file = \OC_Share_Backend_File::getSource($target);
if ($file && isset($file['path'])) {
$cache->move($this->files[$source], $file['path']);
}
}
}