diff options
Diffstat (limited to 'OpenSim/Services/UserAccountService/UserAccountService.cs')
-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>(); |