diff options
author | Melanie Thielker | 2010-05-29 05:14:18 +0200 |
---|---|---|
committer | Melanie | 2010-05-29 04:09:47 +0100 |
commit | cd77648f489a08b52093513e0ad3d7965104755d (patch) | |
tree | 7d6a7fcfac7970c951d5c6e572314b8fa9336337 /OpenSim/Services/Interfaces/IUserAccountService.cs | |
parent | get TestSaveIarV0_1() uncommented but not running as a test yet since I didn'... (diff) | |
download | opensim-SC_OLD-cd77648f489a08b52093513e0ad3d7965104755d.zip opensim-SC_OLD-cd77648f489a08b52093513e0ad3d7965104755d.tar.gz opensim-SC_OLD-cd77648f489a08b52093513e0ad3d7965104755d.tar.bz2 opensim-SC_OLD-cd77648f489a08b52093513e0ad3d7965104755d.tar.xz |
Get the user's DOB back from the server response properly.
Diffstat (limited to 'OpenSim/Services/Interfaces/IUserAccountService.cs')
-rw-r--r-- | OpenSim/Services/Interfaces/IUserAccountService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs index e316731..09d1d87 100644 --- a/OpenSim/Services/Interfaces/IUserAccountService.cs +++ b/OpenSim/Services/Interfaces/IUserAccountService.cs | |||
@@ -91,7 +91,7 @@ namespace OpenSim.Services.Interfaces | |||
91 | UserTitle = kvp["UserTitle"].ToString(); | 91 | UserTitle = kvp["UserTitle"].ToString(); |
92 | 92 | ||
93 | if (kvp.ContainsKey("Created")) | 93 | if (kvp.ContainsKey("Created")) |
94 | Convert.ToInt32(kvp["Created"].ToString()); | 94 | Created = Convert.ToInt32(kvp["Created"].ToString()); |
95 | if (kvp.ContainsKey("ServiceURLs") && kvp["ServiceURLs"] != null) | 95 | if (kvp.ContainsKey("ServiceURLs") && kvp["ServiceURLs"] != null) |
96 | { | 96 | { |
97 | ServiceURLs = new Dictionary<string, object>(); | 97 | ServiceURLs = new Dictionary<string, object>(); |