From 3f1ec6334f59303d8223265dda97dc6b86b3fd3d Mon Sep 17 00:00:00 2001 From: Justin Clarke Casey Date: Thu, 26 Mar 2009 17:30:43 +0000 Subject: * Fix build break from last commit --- OpenSim/Framework/Serialization/External/UserProfileSerializer.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 @@ using System.IO; using System.Xml; +using OpenMetaverse; using OpenSim.Framework; namespace OpenSim.Framework.Serialization.External @@ -53,7 +54,7 @@ namespace OpenSim.Framework.Serialization.External xtw.WriteAttributeString("minor_version", MINOR_VERSION.ToString()); xtw.WriteElementString("name", profile.Name); - xtw.WriteElementString("id", profile.ID); + xtw.WriteElementString("id", profile.ID.ToString()); xtw.WriteElementString("about", profile.AboutText); // Not sure if we're storing this yet, need to take a look -- cgit v1.1