aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clarke Casey2009-03-26 17:30:43 +0000
committerJustin Clarke Casey2009-03-26 17:30:43 +0000
commit3f1ec6334f59303d8223265dda97dc6b86b3fd3d (patch)
treefcde17613080dc112695fa88cbdb2ccfcf560d4f
parent* iars: Serialize information about item creators to archive (diff)
downloadopensim-SC_OLD-3f1ec6334f59303d8223265dda97dc6b86b3fd3d.zip
opensim-SC_OLD-3f1ec6334f59303d8223265dda97dc6b86b3fd3d.tar.gz
opensim-SC_OLD-3f1ec6334f59303d8223265dda97dc6b86b3fd3d.tar.bz2
opensim-SC_OLD-3f1ec6334f59303d8223265dda97dc6b86b3fd3d.tar.xz
* Fix build break from last commit
-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