Merge pull request #20223 from owncloud/fix-apply-webdav-tags

Fix TagList namespace in property map
This commit is contained in:
Thomas Müller 2015-11-03 14:22:49 +01:00
commit a8daef4280
1 changed files with 1 additions and 1 deletions

View File

@ -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'));