diff options
Diffstat (limited to 'OpenGridServices')
-rw-r--r-- | OpenGridServices/OpenGridServices.UserServer/UserManager.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenGridServices/OpenGridServices.UserServer/UserManager.cs b/OpenGridServices/OpenGridServices.UserServer/UserManager.cs index f378c32..f512b15 100644 --- a/OpenGridServices/OpenGridServices.UserServer/UserManager.cs +++ b/OpenGridServices/OpenGridServices.UserServer/UserManager.cs | |||
@@ -713,14 +713,14 @@ namespace OpenGridServices.UserServer | |||
713 | xw.WriteAttributeString("profile_firstlife_about", profile.profileFirstText); | 713 | xw.WriteAttributeString("profile_firstlife_about", profile.profileFirstText); |
714 | xw.WriteAttributeString("profile_firstlife_image", profile.profileFirstImage.ToStringHyphenated()); | 714 | xw.WriteAttributeString("profile_firstlife_image", profile.profileFirstImage.ToStringHyphenated()); |
715 | xw.WriteAttributeString("profile_can_do", profile.profileCanDoMask.ToString()); | 715 | xw.WriteAttributeString("profile_can_do", profile.profileCanDoMask.ToString()); |
716 | xw.WriteAttributeString("profile_want_do", profile.profileWantDoMask()); | 716 | xw.WriteAttributeString("profile_want_do", profile.profileWantDoMask.ToString()); |
717 | xw.WriteAttributeString("profile_image", profile.profileImage.ToStringHyphenated()); | 717 | xw.WriteAttributeString("profile_image", profile.profileImage.ToStringHyphenated()); |
718 | xw.WriteAttributeString("profile_created",profile.created.ToString(); | 718 | xw.WriteAttributeString("profile_created",profile.created.ToString()); |
719 | xw.WriteAttributeString("profile_lastlogin",profile.lastLogin.ToString()); | 719 | xw.WriteAttributeString("profile_lastlogin",profile.lastLogin.ToString()); |
720 | // Home region information | 720 | // Home region information |
721 | xw.WriteAttributeString("home_coordinates", profile.homeLocation.ToString()); | 721 | xw.WriteAttributeString("home_coordinates", profile.homeLocation.ToString()); |
722 | xw.WriteAttributeString("home_region", profile.homeRegion.ToString()); | 722 | xw.WriteAttributeString("home_region", profile.homeRegion.ToString()); |
723 | xw.WriteAttributeString("home_look", profile.homeLookAt()); | 723 | xw.WriteAttributeString("home_look", profile.homeLookAt.ToString()); |
724 | 724 | ||
725 | xw.WriteEndElement(); | 725 | xw.WriteEndElement(); |
726 | 726 | ||