diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-11-02 14:19:01 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-11-02 14:19:01 +0100 |
commit | 52e213f0268e9350e220038f7eb376208fcf01d7 (patch) | |
tree | 5e03a72037b0d9f48f2dc86db707328f9c203d46 /apps | |
parent | 053effaa5124ac527712ac97193eb444259c69bc (diff) | |
download | nextcloud-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.php | 2 |
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')); |