quote:
Originally posted by Tochjo
I believe vBulletinBoard can automatically adjust it
What version? I'm pretty sure 2.3.x can't...
Edit: Looks like vB 3 has the feature... it uses
Javascript...
http://www.vbulletin.com/forum/archive/index.php/t-72234
I guess that makes sense, because it's the only way to get the the user's time offset automatically...
code:
var tzOffset = $bbuserinfo[timezoneoffset] + $bbuserinfo[dstonoff];
var utcOffset = new Date().getTimezoneOffset() / 60;
if (Math.abs(tzOffset + utcOffset) == 1)
{ // Dst offset is 1 so its changed
document.forms.dstform.submit();
}