diff options
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Framework/Serialization/External/ExternalRepresentationUtils.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Framework/Serialization/External/ExternalRepresentationUtils.cs b/OpenSim/Framework/Serialization/External/ExternalRepresentationUtils.cs index 6debf65..a293388 100644 --- a/OpenSim/Framework/Serialization/External/ExternalRepresentationUtils.cs +++ b/OpenSim/Framework/Serialization/External/ExternalRepresentationUtils.cs | |||
@@ -136,6 +136,9 @@ namespace OpenSim.Framework.Serialization.External | |||
136 | 136 | ||
137 | foreach (XmlNode sop in sops) | 137 | foreach (XmlNode sop in sops) |
138 | { | 138 | { |
139 | // Due to mono bug, we're removing all xmlns attributes | ||
140 | sop.Attributes.RemoveAll(); | ||
141 | |||
139 | UserAccount creator = null; | 142 | UserAccount creator = null; |
140 | bool hasCreatorData = false; | 143 | bool hasCreatorData = false; |
141 | XmlNodeList nodes = sop.ChildNodes; | 144 | XmlNodeList nodes = sop.ChildNodes; |