aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services/Interfaces
diff options
context:
space:
mode:
authorDiva Canto2010-06-15 16:36:22 -0700
committerDiva Canto2010-06-15 16:36:22 -0700
commit38f098588cb2227602b8e5a5059d0513195da52f (patch)
tree96a288d30f347b4ba616b9ea7c89c5ce4bcbdd55 /OpenSim/Services/Interfaces
parentTypo corrected in Robust.HG.ini.example (diff)
downloadopensim-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.
Diffstat (limited to 'OpenSim/Services/Interfaces')
-rw-r--r--OpenSim/Services/Interfaces/IUserAccountService.cs4
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;
29using System.Collections.Generic; 29using System.Collections.Generic;
30using OpenMetaverse; 30using OpenMetaverse;
31 31
32using OpenSim.Framework;
33
32namespace OpenSim.Services.Interfaces 34namespace 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;