diff options
author | Diva Canto | 2010-01-13 09:17:30 -0800 |
---|---|---|
committer | Diva Canto | 2010-01-13 09:17:30 -0800 |
commit | 7356860b487febd12c2e0de2f009a6df9ea0aeec (patch) | |
tree | 801eaa0c90483cca8a07f2b4f9f30bf16be84f62 /OpenSim/Services/UserAccountService | |
parent | More appearance woes fixed, this time for child agents. Tested on a grid with... (diff) | |
download | opensim-SC_OLD-7356860b487febd12c2e0de2f009a6df9ea0aeec.zip opensim-SC_OLD-7356860b487febd12c2e0de2f009a6df9ea0aeec.tar.gz opensim-SC_OLD-7356860b487febd12c2e0de2f009a6df9ea0aeec.tar.bz2 opensim-SC_OLD-7356860b487febd12c2e0de2f009a6df9ea0aeec.tar.xz |
Several more buglets removed.
Diffstat (limited to 'OpenSim/Services/UserAccountService')
-rw-r--r-- | OpenSim/Services/UserAccountService/UserAccountService.cs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/OpenSim/Services/UserAccountService/UserAccountService.cs b/OpenSim/Services/UserAccountService/UserAccountService.cs index 90077d8..a1dbb1e 100644 --- a/OpenSim/Services/UserAccountService/UserAccountService.cs +++ b/OpenSim/Services/UserAccountService/UserAccountService.cs | |||
@@ -119,6 +119,10 @@ namespace OpenSim.Services.UserAccountService | |||
119 | u.ScopeID = d.ScopeID; | 119 | u.ScopeID = d.ScopeID; |
120 | u.Email = d.Data["Email"].ToString(); | 120 | u.Email = d.Data["Email"].ToString(); |
121 | u.Created = Convert.ToInt32(d.Data["Created"].ToString()); | 121 | u.Created = Convert.ToInt32(d.Data["Created"].ToString()); |
122 | if (d.Data["UserTitle"] != null) | ||
123 | u.UserTitle = d.Data["UserTitle"].ToString(); | ||
124 | else | ||
125 | u.UserTitle = string.Empty; | ||
122 | 126 | ||
123 | string[] URLs = d.Data["ServiceURLs"].ToString().Split(new char[] { ' ' }); | 127 | string[] URLs = d.Data["ServiceURLs"].ToString().Split(new char[] { ' ' }); |
124 | u.ServiceURLs = new Dictionary<string, object>(); | 128 | u.ServiceURLs = new Dictionary<string, object>(); |