admingump will not load accounts on account button (use empty search).
default inactive account time changed to 180 days.
This commit is contained in:
parent
0338bd6a75
commit
a762fa2875
1 changed files with 3 additions and 3 deletions
|
|
@ -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() )
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue