aboutsummaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-11-02 14:19:01 +0100
committerVincent Petry <pvince81@owncloud.com>2015-11-02 14:19:01 +0100
commit52e213f0268e9350e220038f7eb376208fcf01d7 (patch)
tree5e03a72037b0d9f48f2dc86db707328f9c203d46 /apps
parent053effaa5124ac527712ac97193eb444259c69bc (diff)
downloadnextcloud-server-52e213f0268e9350e220038f7eb376208fcf01d7.tar.gz
nextcloud-server-52e213f0268e9350e220038f7eb376208fcf01d7.zip
Fix TagList namespace in property map
Diffstat (limited to 'apps')
-rw-r--r--apps/dav/lib/connector/sabre/tagsplugin.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/connector/sabre/tagsplugin.php b/apps/dav/lib/connector/sabre/tagsplugin.php
index 7446d97790b..2f5937da25a 100644
--- a/apps/dav/lib/connector/sabre/tagsplugin.php
+++ b/apps/dav/lib/connector/sabre/tagsplugin.php
@@ -108,7 +108,7 @@ class TagsPlugin extends \Sabre\DAV\ServerPlugin
public function initialize(\Sabre\DAV\Server $server) {
$server->xmlNamespaces[self::NS_OWNCLOUD] = 'oc';
- $server->propertyMap[self::TAGS_PROPERTYNAME] = 'OC\\Connector\\Sabre\\TagList';
+ $server->propertyMap[self::TAGS_PROPERTYNAME] = 'OCA\\DAV\\Connector\\Sabre\\TagList';
$this->server = $server;
$this->server->on('propFind', array($this, 'handleGetProperties'));