Still doesn't work. I used this code and it doesn't show the local time or date in the profile.
PHP Code:
// Local Date and Time in Profile
global $vbulletin;
$userinfo['tzoffset'] = $userinfo['timezoneoffset'];
if ($vbulletin->userinfo['dstonoff'])
{
// DST is on, add an hour
$userinfo['tzoffset']++;
if (substr($userinfo['tzoffset'], 0, 1) != '-')
{
// recorrect so that it has + sign, if necessary
$userinfo['tzoffset'] = '+' . $userinfo['tzoffset'];
}
}
$userinfo['localtime'] = date($this->registry->options['timeformat'], TIMENOW+($userinfo['tzoffset']-$userinfo['timeoffset'])*3600);
$userinfo['localdate'] = date($this->registry->options['dateformat'], TIMENOW+($userinfo['tzoffset']-$userinfo['timeoffset'])*3600);
// Local Date and Time in Profile