aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenGridServices
diff options
context:
space:
mode:
authorAdam Frisby2007-06-09 02:15:56 +0000
committerAdam Frisby2007-06-09 02:15:56 +0000
commitdd5848668c130aeb7f6ed4271352ab615e80cbe1 (patch)
tree38f6b39254fea3a2473438b116151e55b5c416ab /OpenGridServices
parent* Added more support for wider profile information from get user REST calls. (diff)
downloadopensim-SC_OLD-dd5848668c130aeb7f6ed4271352ab615e80cbe1.zip
opensim-SC_OLD-dd5848668c130aeb7f6ed4271352ab615e80cbe1.tar.gz
opensim-SC_OLD-dd5848668c130aeb7f6ed4271352ab615e80cbe1.tar.bz2
opensim-SC_OLD-dd5848668c130aeb7f6ed4271352ab615e80cbe1.tar.xz
Protip: Check for obvious errors before submitting
Diffstat (limited to 'OpenGridServices')
-rw-r--r--OpenGridServices/OpenGridServices.UserServer/UserManager.cs6
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