send back 'X-OC-MTime: accepted' when X-OC-MTime was applied

This commit is contained in:
Jörn Friedrich Dreyer 2013-02-10 11:44:34 +01:00
parent d2332f60f3
commit 2644003bf1
1 changed files with 3 additions and 1 deletions

View File

@ -56,7 +56,9 @@ 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) {
\OC\Files\Filesystem::touch($this->path,$mtime);
if(\OC\Files\Filesystem::touch($this->path, $mtime)) {
header('X-OC-MTime: accepted');
}
}
return OC_Connector_Sabre_Node::getETagPropertyForPath($this->path);