Skip to content
Snippets Groups Projects
Commit 1a899ac4 authored by Frank Karlitschek's avatar Frank Karlitschek
Browse files

Merge pull request #5232 from owncloud/fixing-webdav-touch-master

due to internal implementations touch will always be successful - $mtime...
parents ec4fd354 27738fc4
No related branches found
No related tags found
No related merge requests found
......@@ -147,12 +147,6 @@ abstract class OC_Connector_Sabre_Node implements Sabre_DAV_INode, Sabre_DAV_IPr
* Even if the modification time is set to a custom value the access time is set to now.
*/
public function touch($mtime) {
// touch is only allowed if the update privilege is granted
if (!\OC\Files\Filesystem::isUpdatable($this->path)) {
throw new \Sabre_DAV_Exception_Forbidden();
}
\OC\Files\Filesystem::touch($this->path, $mtime);
}
......
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