Merge pull request #6129 from owncloud/chunking-fixtouchafterassemble

Fixed touch after chunk assembling
remotes/origin/stable6
Frank Karlitschek 13 years ago
commit 3c62de90fd
  1. 2
      lib/private/connector/sabre/file.php

@ -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');
}
}

Loading…
Cancel
Save