diff options
author | MW | 2007-04-03 13:37:11 +0000 |
---|---|---|
committer | MW | 2007-04-03 13:37:11 +0000 |
commit | 56e6587c9f3ff9b8b9e48ff20a21244b739e2081 (patch) | |
tree | 4ef13347d53989281c8d554be8102f4227bcf3df /OpenSim.GenericConfig | |
parent | OpenSim no longer uses OpenSim.Config.SimConfigDb4o, it now uses OpenSim.Gene... (diff) | |
download | opensim-SC-56e6587c9f3ff9b8b9e48ff20a21244b739e2081.zip opensim-SC-56e6587c9f3ff9b8b9e48ff20a21244b739e2081.tar.gz opensim-SC-56e6587c9f3ff9b8b9e48ff20a21244b739e2081.tar.bz2 opensim-SC-56e6587c9f3ff9b8b9e48ff20a21244b739e2081.tar.xz |
Temporary fix for the object taking bug
Diffstat (limited to 'OpenSim.GenericConfig')
-rw-r--r-- | OpenSim.GenericConfig/Xml/XmlConfig.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim.GenericConfig/Xml/XmlConfig.cs b/OpenSim.GenericConfig/Xml/XmlConfig.cs index c398229..62e3cbf 100644 --- a/OpenSim.GenericConfig/Xml/XmlConfig.cs +++ b/OpenSim.GenericConfig/Xml/XmlConfig.cs | |||
@@ -81,7 +81,7 @@ namespace OpenSim.GenericConfig | |||
81 | { | 81 | { |
82 | if (configNode.Attributes[attributeName] != null) | 82 | if (configNode.Attributes[attributeName] != null) |
83 | { | 83 | { |
84 | configNode.Attributes.GetNamedItem(attributeName).Value = attributeValue; | 84 | ((XmlAttribute)configNode.Attributes.GetNamedItem(attributeName)).Value = attributeValue; |
85 | } | 85 | } |
86 | else | 86 | else |
87 | { | 87 | { |