Quote:
Originally Posted by Boofo
In this line:
PHP Code:
$servertime = ($vbulletin->options['timeoffset'] - ($timediff+2)); //Server is on GMT time
change the:
to reflect your own server time. It is set at GMT by default. So, if you are 14 hours ahead of GMT, then it would have to be changed to +16. 
|
I just wonder WHY you dont add this into installation instruction?
people need to check, or edit it before uploading, or you should head that off from
$vbulletin->options[timeoffset]
using this, you wont need to worry about that editing
$servertime = ($timeoffset - ($timediff+ $vbulletin->options[timeoffset])); //Server is on GMT time