4
Quote:
2. Change the 'Sorted By' date from 'From last 100 days' to 'From the Beginning.
You must edit 'viewforum.php' (located in newbb module dir):
find a line that looks similar to this:
$sortsince = !empty($_GET['sortsince']) ? intval($_GET['sortsince']) : 100;
and change '100' to '1000':
$sortsince = !empty($_GET['sortsince']) ? intval($_GET['sortsince']) : 1000;
Notice, however, that 'From the beginning' actually means 'from the last 1000 days'
- you can change every '1000' in viewforum.php to something bigger, like '5000'