I'm looking at the code and comparing it to VB 4.2.3 which I assume worked, but all the code I see had hard coded multiplying the offset by 3600 (which is # of seconds in an hour 60*60) so I don't understand where partial hours come into the code.
Can anyone confirm the last version timezones worked correctly? Did they work in 4.2.4?
VB.com thread-
https://www.vbulletin.com/forum/foru...r-update-4-2-5 (in case we get a fix.)
EDIT- I have confirmed the partial hours DO work in VB 4.2.4.
--------------- Added [DATE]1502454435[/DATE] at [TIME]1502454435[/TIME] ---------------
OK it seems:
PHP Code:
$vbulletin->userinfo['tzoffset']
is being forced to be an int somewhere in VB 4.2.5.
In VB 4.2.4 it can be a float. 30 minutes would be like 4.5 and 45 minutes would be like 6.25
Still checking code for fix.
--------------- Added [DATE]1502461642[/DATE] at [TIME]1502461642[/TIME] ---------------
OK,
functions.php in the /includes/ directory.
Line 4503:
Code:
$tzos = intval($vbulletin->userinfo['timezoneoffset']);
If you remove intval from the code, the time works (you have to set the timezone again after making this change.
It works in the forum and posts. It does NOT work on calendar events, for some reason there are additional intval() functions in the calculator.
I'm going to look deeper into the security ramifications of removing the intval function from this line but a quick glace I see no problem.
--------------- Added [DATE]1502462449[/DATE] at [TIME]1502462449[/TIME] ---------------
So my final determination is to simply change
Code:
$tzos = intval($vbulletin->userinfo['timezoneoffset']);
to
Code:
$tzos = floatval($vbulletin->userinfo['timezoneoffset']);
on line 4503 of /includes/functions.php to get the time working on most of the site.
Unfortunately I don't see any way to make this a plugin, the manual edit it necessary.