admingump will not load accounts on account button (use empty search).

default inactive account time changed to 180 days.
This commit is contained in:
mark 2007-04-26 19:04:16 +00:00
parent 0338bd6a75
commit a762fa2875

View file

@ -722,8 +722,8 @@ namespace Server.Gumps
{
if ( m_List == null )
{
m_List = new ArrayList( (ICollection)Accounts.GetAccounts() );
m_List.Sort( AccountComparer.Instance );
m_List = new ArrayList(); // new ArrayList( (ICollection)Accounts.GetAccounts() );
// m_List.Sort( AccountComparer.Instance );
}
ArrayList rads = ( state as ArrayList );
@ -2363,7 +2363,7 @@ namespace Server.Gumps
{
ArrayList results = new ArrayList();
DateTime minTime = DateTime.Now - TimeSpan.FromDays( 90.0 );
DateTime minTime = DateTime.Now - TimeSpan.FromDays( 180.0 );
foreach ( Account acct in Accounts.GetAccounts() )
{