Kirby, this code seems to work in the postbit, but is it 3.5 ready and the way it should be for the postbit?
I'm using the postbit_display_complete hook for this one.
PHP Code:
global $vbulletin;
$this->post['tzoffset'] = $this->post['timezoneoffset'];
if ($vbulletin->userinfo['dstonoff'])
{
// DST is on, add an hour
$this->post['tzoffset']++;
if (substr($this->post['tzoffset'], 0, 1) != '-')
{
// recorrect so that it has + sign, if necessary
$this->post['tzoffset'] = '+' . $this->post['tzoffset'];
}
}
$this->post['localtime'] = date($this->registry->options['timeformat'], TIMENOW+($this->post['tzoffset']-$this->post['timeoffset'])*3600);
$this->post['localdate'] = date($this->registry->options['dateformat'], TIMENOW+($this->post['tzoffset']-$this->post['timeoffset'])*3600);