Thread: Horked up time.
View Single Post
Old 9 June 2008, 06:00 PM   #1
astcell
"TRF" Member
 
astcell's Avatar
 
Join Date: Aug 2006
Real Name: Robert
Location: Angelus Oaks, CA
Watch: 116713
Posts: 6,828
Horked up time.

It is 12:56pm, The clock on the site here says:

Monday 9 June 2008 @ 12:56:47 am

Can someone PLEASE fix it?

HERE is the problem. Page code says:

if (s<10) {s="0" + s}
if (m<10) {m="0" + m}
if (h>12) {h-=12;am_pm = "pm"}
else {am_pm="am"}
if (h<01) {h="12"}

And it needs to say:

if (s<10) {s="0" + s}
if (m<10) {m="0" + m}
if (h>11) {h-=12;am_pm = "pm"}
else {am_pm="am"}
if (h<01) {h="12"}

Third line down change the 12 to 11, because 11am is followed by 12pm.

Check this site between 12 and 1 in the afternoon where you live and see!
astcell is offline   Reply With Quote