What steps will reproduce the problem?
1. Add event starting anytime in 12PM hour
2. Look at displayed agenda item value
What is the expected output? What do you see instead?
Expect 12PM for noon forward.
What version of the product are you using? On what operating system?
1.3.2
Please provide any additional information below.
DateUtil.getAgendaDisplayTime line 3495 requires special case testing for 12
value of h variable:
if (h == 0) {
h = 12;
}
else if (h == 12)
ampm = "pm";
else if (h > 12) {
h = h - 12;
ampm = "pm"
}
Original issue reported on code.google.com by gabriel....@gmail.com on 2 Sep 2010 at 8:42
Original issue reported on code.google.com by
gabriel....@gmail.com
on 2 Sep 2010 at 8:42