Topic: How to edit length of "active topics" time frame

I'd like to change it from 24 hours to 48 or 72 hours.
Where do I edit that please?
Thanks smile

2 (edited by dimkalinux 2011-03-12 16:03)

Re: How to edit length of "active topics" time frame

If you use default link - http://punbb.informer.com/forums/search/recent/ - active time is 86400 seconds.
You can specify time - http://punbb.informer.com/forums/search/recent/600/ - 10 minutes

For other url scheme see your current url scheme link

'search_recent_results'            =>    'search.php?action=show_recent&value=$1',

Or modify search.php

        else if ($action == 'show_recent')
            $value = (isset($_GET['value'])) ? intval($_GET['value']) : 86400;