Fixes creation date issue on user accounts.
parent
07b8eddb64
commit
38f098588c
|
@ -29,6 +29,8 @@ using System;
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using OpenMetaverse;
|
using OpenMetaverse;
|
||||||
|
|
||||||
|
using OpenSim.Framework;
|
||||||
|
|
||||||
namespace OpenSim.Services.Interfaces
|
namespace OpenSim.Services.Interfaces
|
||||||
{
|
{
|
||||||
public class UserAccount
|
public class UserAccount
|
||||||
|
@ -50,7 +52,7 @@ namespace OpenSim.Services.Interfaces
|
||||||
LastName = lastName;
|
LastName = lastName;
|
||||||
Email = email;
|
Email = email;
|
||||||
ServiceURLs = new Dictionary<string, object>();
|
ServiceURLs = new Dictionary<string, object>();
|
||||||
// Created = ???
|
Created = Util.UnixTimeSinceEpoch();
|
||||||
}
|
}
|
||||||
|
|
||||||
public string FirstName;
|
public string FirstName;
|
||||||
|
|
Loading…
Reference in New Issue