diff options
author | Rob Smart | 2009-09-09 19:42:53 +0100 |
---|---|---|
committer | Diva Canto | 2009-09-10 17:51:28 -0700 |
commit | 16940097beee0fad554dfcb7249294ff8ac247d4 (patch) | |
tree | 3f5a904b5ac46cb028b00747c5fe8f215313b144 /OpenSim/Region/Communications | |
parent | Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim (diff) | |
download | opensim-SC_OLD-16940097beee0fad554dfcb7249294ff8ac247d4.zip opensim-SC_OLD-16940097beee0fad554dfcb7249294ff8ac247d4.tar.gz opensim-SC_OLD-16940097beee0fad554dfcb7249294ff8ac247d4.tar.bz2 opensim-SC_OLD-16940097beee0fad554dfcb7249294ff8ac247d4.tar.xz |
The stubs for an authorization service, at the moment the service will always grant access to an avatar entering the region if requested.
Diffstat (limited to 'OpenSim/Region/Communications')
-rw-r--r-- | OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs b/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs index ec8512a..adc12aa 100644 --- a/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs +++ b/OpenSim/Region/Communications/OGS1/OGS1UserDataPlugin.cs | |||
@@ -651,6 +651,7 @@ namespace OpenSim.Region.Communications.OGS1 | |||
651 | UserProfileData userData = new UserProfileData(); | 651 | UserProfileData userData = new UserProfileData(); |
652 | userData.FirstName = (string)data["firstname"]; | 652 | userData.FirstName = (string)data["firstname"]; |
653 | userData.SurName = (string)data["lastname"]; | 653 | userData.SurName = (string)data["lastname"]; |
654 | userData.Email = (string)data["email"]; | ||
654 | userData.ID = new UUID((string)data["uuid"]); | 655 | userData.ID = new UUID((string)data["uuid"]); |
655 | userData.Created = Convert.ToInt32(data["profile_created"]); | 656 | userData.Created = Convert.ToInt32(data["profile_created"]); |
656 | userData.UserInventoryURI = (string)data["server_inventory"]; | 657 | userData.UserInventoryURI = (string)data["server_inventory"]; |