diff options
Diffstat (limited to 'OpenSim/Framework/Serialization/External')
-rw-r--r-- | OpenSim/Framework/Serialization/External/UserProfileSerializer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/Serialization/External/UserProfileSerializer.cs b/OpenSim/Framework/Serialization/External/UserProfileSerializer.cs index fc76fb6..544d13d 100644 --- a/OpenSim/Framework/Serialization/External/UserProfileSerializer.cs +++ b/OpenSim/Framework/Serialization/External/UserProfileSerializer.cs | |||
@@ -27,6 +27,7 @@ | |||
27 | 27 | ||
28 | using System.IO; | 28 | using System.IO; |
29 | using System.Xml; | 29 | using System.Xml; |
30 | using OpenMetaverse; | ||
30 | using OpenSim.Framework; | 31 | using OpenSim.Framework; |
31 | 32 | ||
32 | namespace OpenSim.Framework.Serialization.External | 33 | namespace OpenSim.Framework.Serialization.External |
@@ -53,7 +54,7 @@ namespace OpenSim.Framework.Serialization.External | |||
53 | xtw.WriteAttributeString("minor_version", MINOR_VERSION.ToString()); | 54 | xtw.WriteAttributeString("minor_version", MINOR_VERSION.ToString()); |
54 | 55 | ||
55 | xtw.WriteElementString("name", profile.Name); | 56 | xtw.WriteElementString("name", profile.Name); |
56 | xtw.WriteElementString("id", profile.ID); | 57 | xtw.WriteElementString("id", profile.ID.ToString()); |
57 | xtw.WriteElementString("about", profile.AboutText); | 58 | xtw.WriteElementString("about", profile.AboutText); |
58 | 59 | ||
59 | // Not sure if we're storing this yet, need to take a look | 60 | // Not sure if we're storing this yet, need to take a look |