From c176caeb05c2264654b764e4d010561da60c24fc Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Thu, 10 Apr 2008 13:53:06 +0000 Subject: moved fields to properties for UserDataProfile, which was actually a little more work than I expected given the copious use of out params. --- OpenSim/Region/DataSnapshot/LandSnapshot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Region/DataSnapshot') diff --git a/OpenSim/Region/DataSnapshot/LandSnapshot.cs b/OpenSim/Region/DataSnapshot/LandSnapshot.cs index a8bbed1..a82f4be 100644 --- a/OpenSim/Region/DataSnapshot/LandSnapshot.cs +++ b/OpenSim/Region/DataSnapshot/LandSnapshot.cs @@ -223,7 +223,7 @@ namespace OpenSim.Region.DataSnapshot { XmlNode username = nodeFactory.CreateNode(XmlNodeType.Element, "name", ""); UserProfileData userProfile = m_scene.CommsManager.UserService.GetUserProfile(userOwnerUUID); - username.InnerText = userProfile.username + " " + userProfile.surname; + username.InnerText = userProfile.FirstName + " " + userProfile.SurName; userblock.AppendChild(username); } catch (Exception) -- cgit v1.1