2003-08-19  Harry Lu  <harry.lu@sun.com>

        ** 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
This commit is contained in:
Harry Lu
2003-08-19 08:51:09 +00:00
committed by Harry Lu
parent c0f44f7904
commit 4d5611dfa7
2 changed files with 8 additions and 1 deletions

View File

@ -1,3 +1,10 @@
2003-08-19 Harry Lu <harry.lu@sun.com>
** 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 <jack.jia@sun.com>
[Fixed bug #47563]

View File

@ -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)) {