Fixes creation date issue on user accounts.

0.7-release
Diva Canto 2010-06-15 16:36:22 -07:00
parent 07b8eddb64
commit 38f098588c
1 changed files with 3 additions and 1 deletions

View File

@ -29,6 +29,8 @@ using System;
using System.Collections.Generic;
using OpenMetaverse;
using OpenSim.Framework;
namespace OpenSim.Services.Interfaces
{
public class UserAccount
@ -50,7 +52,7 @@ namespace OpenSim.Services.Interfaces
LastName = lastName;
Email = email;
ServiceURLs = new Dictionary<string, object>();
// Created = ???
Created = Util.UnixTimeSinceEpoch();
}
public string FirstName;