X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fcalendar_view.c;h=c40b5a064b957ad829680f6dc233aeefc8597606;hp=f71c375f8f24155403b7e1e140f7b7910cb080a8;hb=1b278ca1243861adba31579d1633b11c8e096271;hpb=e070c1c54bf57f5d23376ff8c55d5621f5e92237 diff --git a/webcit/calendar_view.c b/webcit/calendar_view.c index f71c375f8..c40b5a064 100644 --- a/webcit/calendar_view.c +++ b/webcit/calendar_view.c @@ -569,7 +569,8 @@ void calendar_month_view(int year, int month, int day) { } /* Outer table (to get the background color) */ - wc_printf(" \n
"); + wc_printf("
" + " \n
"); wc_printf("\n"); @@ -661,8 +662,8 @@ void calendar_month_view(int year, int month, int day) { } wc_printf("
" /* end of inner table */ - "
\n" /* end of outer table */ - ); + "
" /* end of outer table */ + "\n"); } /* @@ -704,7 +705,8 @@ void calendar_brief_month_view(int year, int month, int day) { } /* Outer table (to get the background color) */ - wc_printf("" + "
\n"); wc_printf("\n"); @@ -783,8 +785,8 @@ void calendar_brief_month_view(int year, int month, int day) { } wc_printf("
" /* end of inner table */ - "
\n" /* end of outer table */ - ); + "" /* end of outer table */ + "\n"); } /* @@ -1161,6 +1163,8 @@ void calendar_day_view(int year, int month, int day) { ++tomorrow.day; tomorrow = icaltime_normalize(tomorrow); + wc_printf("
"); + /* Inner table (the real one) */ wc_printf(" \n"); @@ -1324,7 +1328,9 @@ void calendar_day_view(int year, int month, int day) { embeddable_mini_calendar(year, month); wc_printf(""); /* end stuff-on-the-right */ - wc_printf("
\n"); /* end of inner table */ + + wc_printf("" /* end of inner table */ + "
"); }