MyBB Community Forums

Full Version: Can't get back to old threads if sorted more recently
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

If I filter a forum by a time more recent than the last thread, there are no threads shown and the filter options disappear, making it impossible to navigate back to the unfiltered version (except by editing the URL).

This is because of this logic in forumdisplay.php:

if($threadcount > 0)
{
eval("\$forumsort = \"".$templates->get("forumdisplay_forumsort")."\";");
}

I'd suggest that the forumsort should be displayed even if $threadcount is 0.

Thanks,
Will