From 4d5611dfa7864faf053033226ea2097cfbca8611 Mon Sep 17 00:00:00 2001 From: Harry Lu Date: Tue, 19 Aug 2003 08:51:09 +0000 Subject: ** For bug #47461. 2003-08-19 Harry Lu ** For bug #47461. * e-summary-calendar.c: (generate_html): Change "%P" to "%p" so that strftime() can work under solaris. svn path=/trunk/; revision=22280 --- my-evolution/ChangeLog | 7 +++++++ my-evolution/e-summary-calendar.c | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/my-evolution/ChangeLog b/my-evolution/ChangeLog index 34abbc9916..fd98a54e38 100644 --- a/my-evolution/ChangeLog +++ b/my-evolution/ChangeLog @@ -1,3 +1,10 @@ +2003-08-19 Harry Lu + + ** For bug #47461. + + * e-summary-calendar.c: (generate_html): Change "%P" to "%p" so that + strftime() can work under solaris. + 2003-08-12 Jack Jia [Fixed bug #47563] diff --git a/my-evolution/e-summary-calendar.c b/my-evolution/e-summary-calendar.c index 6b7e04b593..71a25e6f15 100644 --- a/my-evolution/e-summary-calendar.c +++ b/my-evolution/e-summary-calendar.c @@ -405,7 +405,7 @@ generate_html (gpointer data) if (calendar->wants24hr == TRUE) { strftime (start_str, sizeof start_str, _("%k:%M %d %B"), &start_tm); } else { - strftime (start_str, sizeof start_str, _("%l:%M%P %d %B"), &start_tm); + strftime (start_str, sizeof start_str, _("%l:%M%p %d %B"), &start_tm); } if (cal_component_has_alarms (event->comp)) { -- cgit v1.2.3