Quote:
Originally Posted by JohnGalt
what's the latest version of onlinetoday.php? is it just 2.0? how is it different than the previous version?
|
Yes, its 2.00
To update it to 2.20 change this ;
PHP Code:
require_once('./includes/functions_misc.php');
$now = TIMENOW - intval($vboptions['hourdif']);
$cutoff = vbmktime(0, 0, 0, date('m', $now), date('d', $now), date('Y', $now));
to this ;
PHP Code:
$tz = $bbuserinfo['timezoneoffset'] + $bbuserinfo['dstonoff'];
$now = TIMENOW + ($tz * 3600) - date('Z',TIMENOW);
$cutoff = mktime(0, 0, 0, date('m', $now), date('d', $now), date('Y', $now));
(and edit the comment from 2.00 to 2.20

)