Merge pull request #6129 from owncloud/chunking-fixtouchafterassemble

Fixed touch after chunk assembling
This commit is contained in:
Frank Karlitschek 2013-11-29 09:19:51 -08:00
commit 3c62de90fd
1 changed files with 1 additions and 1 deletions

View File

@ -249,7 +249,7 @@ class OC_Connector_Sabre_File extends OC_Connector_Sabre_Node implements Sabre_D
// allow sync clients to send the mtime along in a header
$mtime = OC_Request::hasModificationTime();
if ($mtime !== false) {
if($fs->touch($this->path, $mtime)) {
if($fs->touch($targetPath, $mtime)) {
header('X-OC-MTime: accepted');
}
}