Jan 03 2005

AdMentor 3.03 is out

Posted by admin under AdMentor FREE asp.net

3.03
Contains bugfixes from 3.02.
BUG FIX: Checking stats doesn't work after 1/1 2005

Such a stupid bug. In the code I hardcoded three years from the first year (which was 2002 when AdMentor.NET was first released). Changed that to 10 years

If you are using the sourcecode release all you need to do to fix it is:

Open up ucStats.cs
Go down to function GetYears(). Change the +3 to +10, like this:

AAAAASTARTSOURCECODE public System.Collections.ICollection GetYears() { if (m_YearArray == null ) { m_YearArray = new ArrayList(); for ( int i = m_lStartYear; i < m_lStartYear+10; i++ ) m_YearArray.Add( i.ToString() ); } return m_YearArray; } AAAAAENDSOURCECODE