aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorTom Grimshaw2010-05-29 01:07:19 -0700
committerTom Grimshaw2010-05-29 01:07:19 -0700
commit3a5d379db840570b4a759afc1f51ff82e61a5887 (patch)
treebef5b2e8149a89d49e38e9e8cfbbb48e0fa0db29 /OpenSim/Services/Interfaces
parentStop IGridService from throwing a fatal exception when an IPEndPoint cannot b... (diff)
parentGet the user's DOB back from the server response properly. (diff)
downloadopensim-SC_OLD-3a5d379db840570b4a759afc1f51ff82e61a5887.zip
opensim-SC_OLD-3a5d379db840570b4a759afc1f51ff82e61a5887.tar.gz
opensim-SC_OLD-3a5d379db840570b4a759afc1f51ff82e61a5887.tar.bz2
opensim-SC_OLD-3a5d379db840570b4a759afc1f51ff82e61a5887.tar.xz
Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
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>();