diff options
author | Diva Canto | 2010-06-15 16:36:22 -0700 |
---|---|---|
committer | Diva Canto | 2010-06-15 16:36:22 -0700 |
commit | 38f098588cb2227602b8e5a5059d0513195da52f (patch) | |
tree | 96a288d30f347b4ba616b9ea7c89c5ce4bcbdd55 | |
parent | Typo corrected in Robust.HG.ini.example (diff) | |
download | opensim-SC_OLD-38f098588cb2227602b8e5a5059d0513195da52f.zip opensim-SC_OLD-38f098588cb2227602b8e5a5059d0513195da52f.tar.gz opensim-SC_OLD-38f098588cb2227602b8e5a5059d0513195da52f.tar.bz2 opensim-SC_OLD-38f098588cb2227602b8e5a5059d0513195da52f.tar.xz |
Fixes creation date issue on user accounts.
-rw-r--r-- | OpenSim/Services/Interfaces/IUserAccountService.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Services/Interfaces/IUserAccountService.cs b/OpenSim/Services/Interfaces/IUserAccountService.cs index 09d1d87..c580078 100644 --- a/OpenSim/Services/Interfaces/IUserAccountService.cs +++ b/OpenSim/Services/Interfaces/IUserAccountService.cs | |||
@@ -29,6 +29,8 @@ using System; | |||
29 | using System.Collections.Generic; | 29 | using System.Collections.Generic; |
30 | using OpenMetaverse; | 30 | using OpenMetaverse; |
31 | 31 | ||
32 | using OpenSim.Framework; | ||
33 | |||
32 | namespace OpenSim.Services.Interfaces | 34 | namespace OpenSim.Services.Interfaces |
33 | { | 35 | { |
34 | public class UserAccount | 36 | public class UserAccount |
@@ -50,7 +52,7 @@ namespace OpenSim.Services.Interfaces | |||
50 | LastName = lastName; | 52 | LastName = lastName; |
51 | Email = email; | 53 | Email = email; |
52 | ServiceURLs = new Dictionary<string, object>(); | 54 | ServiceURLs = new Dictionary<string, object>(); |
53 | // Created = ??? | 55 | Created = Util.UnixTimeSinceEpoch(); |
54 | } | 56 | } |
55 | 57 | ||
56 | public string FirstName; | 58 | public string FirstName; |