diff options
author | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 11:51:39 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2014-06-06 11:51:39 +0200 |
commit | 0661d737e6f529b7d921ada441453f2b314c3445 (patch) | |
tree | 527dc35d7589486d13e096a8f66aad99564e5297 /lib | |
parent | ff1296927629c922d5e606019915f2cdde07a330 (diff) | |
parent | e6665a05429b993b51c41232723a928cc549feb6 (diff) | |
download | nextcloud-server-0661d737e6f529b7d921ada441453f2b314c3445.tar.gz nextcloud-server-0661d737e6f529b7d921ada441453f2b314c3445.zip |
Merge pull request #8900 from guruz/webdav_permission_moveable_renameable
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()) { |