Minor problem with paging on the active topics page.
Problem:
When you select a time range that brings up multiple pages of posts and you select anything greater than page one.
Then select one hour from the Since dropdown which should bring up only 1 page of posts.
This causes no data to display because the Pager.CurrentPageIndex was not reset to 0
Solution:
Add Pager.CurrentPageIndex = 0 to Since_SelectedIndexChanged in active.acsx.cs
protected void Since_SelectedIndexChanged(object sender, System.EventArgs e)
{
Pager.CurrentPageIndex = 0;
BindData();
}