Thank you, Fly-Man, for a patch that fixes propagating the group

id into the data snapshot properly
Fixes Mantis #3545
0.6.5-rc1
Melanie Thielker 2009-04-28 00:08:17 +00:00
parent 6b5a110857
commit c856f21231
1 changed files with 1 additions and 1 deletions

View File

@ -224,7 +224,7 @@ namespace OpenSim.Region.DataSnapshot.Providers
if (parcel.GroupID != UUID.Zero)
{
XmlNode groupblock = nodeFactory.CreateNode(XmlNodeType.Element, "group", "");
XmlNode groupuuid = nodeFactory.CreateNode(XmlNodeType.Element, "uuid", "");
XmlNode groupuuid = nodeFactory.CreateNode(XmlNodeType.Element, "groupuuid", "");
groupuuid.InnerText = parcel.GroupID.ToString();
groupblock.AppendChild(groupuuid);