aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorMelanie Thielker2010-05-29 05:14:18 +0200
committerMelanie2010-05-29 04:09:47 +0100
commitcd77648f489a08b52093513e0ad3d7965104755d (patch)
tree7d6a7fcfac7970c951d5c6e572314b8fa9336337 /OpenSim/Services/Interfaces
parentget TestSaveIarV0_1() uncommented but not running as a test yet since I didn'... (diff)
downloadopensim-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')
-rw-r--r--OpenSim/Services/Interfaces/IUserAccountService.cs2
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>();