User import/export plugin concatenates group names in export
Description
The export mixes up the group names. If there is one user in different group the plugin adds only one group tag with all group names concatenated like this: user: "sone.one" in "group1" and in "group2"
The export mixes up the group names. If there is one user in different group the plugin adds only one group tag with all group names concatenated like this:
user: "sone.one" in "group1" and in "group2"
<Item jid="some.one@jabber.int.kn" askstatus="-1" recvstatus="-1" substatus="3" name="Some One"> <Group>group1group2</Group> </Item>
That causes messed rosters after importing users.
It should be like this
<Item jid="some.one@jabber.int.kn" askstatus="-1" recvstatus="-1" substatus="3" name="Some One"> <Group>group1</Group> <Group>group2</Group> </Item>