diff options
author | Markus Goetz <markus@woboq.com> | 2014-06-05 14:39:06 +0200 |
---|---|---|
committer | Markus Goetz <markus@woboq.com> | 2014-06-05 14:39:06 +0200 |
commit | e6665a05429b993b51c41232723a928cc549feb6 (patch) | |
tree | cc0d9031f129cef8d9df0fc2ec2d2c55ecc327f5 /lib | |
parent | e1beb8c6c38d48eb923ed323dea25110e4bbacfd (diff) | |
download | nextcloud-server-e6665a05429b993b51c41232723a928cc549feb6.tar.gz nextcloud-server-e6665a05429b993b51c41232723a928cc549feb6.zip |
WebDAV Permissions: Distinguish between renameing and moving
Diffstat (limited to 'lib')
-rw-r--r-- | lib/private/connector/sabre/node.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/connector/sabre/node.php b/lib/private/connector/sabre/node.php index 8a369eccf6b..6fc66377ba8 100644 --- a/lib/private/connector/sabre/node.php +++ b/lib/private/connector/sabre/node.php @@ -257,7 +257,7 @@ abstract class OC_Connector_Sabre_Node implements \Sabre\DAV\INode, \Sabre\DAV\I $p .= 'D'; } if ($this->info->isDeletable()) { - $p .= 'N'; + $p .= 'NV'; // Renameable, Moveable } if ($this->info->getType() === \OCP\Files\FileInfo::TYPE_FILE) { if ($this->info->isUpdateable()) { |