mirror of
https://github.com/nextcloud/server.git
synced 2026-04-23 15:21:00 -04:00
Fix TagList serializer
This commit is contained in:
parent
2f3e62a27f
commit
2ef62b0115
1 changed files with 1 additions and 3 deletions
|
|
@ -114,9 +114,7 @@ class TagList implements Element {
|
|||
function xmlSerialize(Writer $writer) {
|
||||
|
||||
foreach ($this->tags as $tag) {
|
||||
$writer->startElement(self::NS_OWNCLOUD . ':tag');
|
||||
$writer->writeElement($tag);
|
||||
$writer->endElement();
|
||||
$writer->writeElement('{' . self::NS_OWNCLOUD . '}tag', $tag);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue