diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/MySQLSimulationData.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Data/MySQL/MySQLSimulationData.cs b/OpenSim/Data/MySQL/MySQLSimulationData.cs index b7f39fb..e558702 100644 --- a/OpenSim/Data/MySQL/MySQLSimulationData.cs +++ b/OpenSim/Data/MySQL/MySQLSimulationData.cs | |||
@@ -1293,9 +1293,9 @@ namespace OpenSim.Data.MySQL | |||
1293 | prim.MediaUrl = (string)row["MediaURL"]; | 1293 | prim.MediaUrl = (string)row["MediaURL"]; |
1294 | 1294 | ||
1295 | if (!(row["DynAttrs"] is System.DBNull)) | 1295 | if (!(row["DynAttrs"] is System.DBNull)) |
1296 | prim.DynAttrs = DynAttrsOSDMap.FromXml((string)row["DynAttrs"]); | 1296 | prim.DynAttrs = DAMap.FromXml((string)row["DynAttrs"]); |
1297 | else | 1297 | else |
1298 | prim.DynAttrs = new DynAttrsOSDMap(); | 1298 | prim.DynAttrs = new DAMap(); |
1299 | 1299 | ||
1300 | return prim; | 1300 | return prim; |
1301 | } | 1301 | } |
@@ -1837,9 +1837,9 @@ namespace OpenSim.Data.MySQL | |||
1837 | s.Media = PrimitiveBaseShape.MediaList.FromXml((string)row["Media"]); | 1837 | s.Media = PrimitiveBaseShape.MediaList.FromXml((string)row["Media"]); |
1838 | 1838 | ||
1839 | if (!(row["DynAttrs"] is System.DBNull)) | 1839 | if (!(row["DynAttrs"] is System.DBNull)) |
1840 | s.DynAttrs = DynAttrsOSDMap.FromXml((string)row["DynAttrs"]); | 1840 | s.DynAttrs = DAMap.FromXml((string)row["DynAttrs"]); |
1841 | else | 1841 | else |
1842 | s.DynAttrs = new DynAttrsOSDMap(); | 1842 | s.DynAttrs = new DAMap(); |
1843 | 1843 | ||
1844 | return s; | 1844 | return s; |
1845 | } | 1845 | } |