diff options
Diffstat (limited to 'OpenSim/Region/DataSnapshot')
-rw-r--r-- | OpenSim/Region/DataSnapshot/LandSnapshot.cs | 2 |
1 files changed, 1 insertions, 1 deletions
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 | |||
223 | { | 223 | { |
224 | XmlNode username = nodeFactory.CreateNode(XmlNodeType.Element, "name", ""); | 224 | XmlNode username = nodeFactory.CreateNode(XmlNodeType.Element, "name", ""); |
225 | UserProfileData userProfile = m_scene.CommsManager.UserService.GetUserProfile(userOwnerUUID); | 225 | UserProfileData userProfile = m_scene.CommsManager.UserService.GetUserProfile(userOwnerUUID); |
226 | username.InnerText = userProfile.username + " " + userProfile.surname; | 226 | username.InnerText = userProfile.FirstName + " " + userProfile.SurName; |
227 | userblock.AppendChild(username); | 227 | userblock.AppendChild(username); |
228 | } | 228 | } |
229 | catch (Exception) | 229 | catch (Exception) |