mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 00:46:02 +08:00
Remove type="owner" from the data snapshot. Made the parser choke and there
is no need for it, as there is no other type
This commit is contained in:
@@ -71,9 +71,9 @@ namespace OpenSim.Region.DataSnapshot.Providers
|
||||
|
||||
//TODO: Fix the marshalling system to have less copypasta gruntwork
|
||||
XmlNode user = factory.CreateNode(XmlNodeType.Element, "user", "");
|
||||
XmlAttribute type = (XmlAttribute)factory.CreateNode(XmlNodeType.Attribute, "type", "");
|
||||
type.Value = "owner";
|
||||
user.Attributes.Append(type);
|
||||
// XmlAttribute type = (XmlAttribute)factory.CreateNode(XmlNodeType.Attribute, "type", "");
|
||||
// type.Value = "owner";
|
||||
// user.Attributes.Append(type);
|
||||
|
||||
//TODO: Create more TODOs
|
||||
XmlNode username = factory.CreateNode(XmlNodeType.Element, "name", "");
|
||||
|
||||
Reference in New Issue
Block a user