Quote:
Yesterday at 11:54 PM N!ck said this in Post #30
Smoothie, try this. Edit your hi_timezone template. Find:
Code:
if (shours!=$nowhours) {
var difference = shours-$nowhours;
And replace it with:
Code:
if (shours!=$nowhours) {
var difference = shours-$nowhours;
if (difference>12) {
difference=difference-24;
}
And let me know if that works. Thanks for your help.
|
Smoothie, I did this change on my own forums as well (first reproduced the problem, then applied it), and it seems to work 100% fine now. I'm going to go ahead and post this in full releases.