aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--OpenSim/Framework/Serialization/External/UserProfileSerializer.cs3
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
28using System.IO; 28using System.IO;
29using System.Xml; 29using System.Xml;
30using OpenMetaverse;
30using OpenSim.Framework; 31using OpenSim.Framework;
31 32
32namespace OpenSim.Framework.Serialization.External 33namespace 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