Thanks IAN I did see that, but I guess I must have goofed it.
Originally posted by Ian Spence:
untested, but give this a shot.
change
if ("$vars_time{TimeFormat}" == "AMPM") {
ampm = hourzz > 12 ? " PM" : " AM";
hourzz = (hourzz > 12) ? hourzz - 12 : hourzz;
}to
if ("$vars_time{TimeFormat}" == "AMPM") {
ampm = hourzz >= 12 ? " PM" : " AM";
hourzz = (hourzz > 12) ? hourzz - 12 : hourzz;
hourzz = (hourzz == 0) ? 12 : hourzz;
}The code
if ("$vars_time{TimeFormat}" == "AMPM") {
ampm = hourzz > 12 ? " PM" : " AM";
hourzz = (hourzz > 12) ? hourzz - 12 : hourzz;
}Appears twice in the public_forum_summary.pl file, so do I change it for both instances?
![[Linked Image]](http://www.ronaldreagan.com/ubb/confused.gif)