How do I display all forum topics from the beginning, instead of the last 100 days?

Requested and Answered by Dave_L on 2005/1/14 23:49:11

How do I display all forum topics from the beginning, instead of the last 100 days?

For NewBB < 2.0.1: modules/newbb/viewforum.php:

$sortsince = !empty($HTTP_GET_VARS[\'sortsince\']) ? intval($HTTP_GET_VARS[\'sortsince\']) : 100;
$sel_since_array = array(1, 2, 5, 10, 20, 30, 40, 60, 75, 100);
...
$forum_selection_since .= \'\';


The value 1000 represents \"From the beginning\", so change the \": 100\" to \": 1000\". For NewBB >= 2.0.1: Go to Module Preference: [img align=lefthttps://xoops.org/uploads/img41f4c1f7432cf.jpg[/img]
Change the 'Since' default value to 1000.

This Q&A was found on XOOPS Web Application System : https://xoops.org/modules/smartfaq/faq.php?faqid=361