]> code.citadel.org Git - citadel.git/blobdiff - webcit/calendar_view.c
Started developing the recurrence editor
[citadel.git] / webcit / calendar_view.c
index f5f440baf0fdec0b92ebc05ef6978112f86441d8..d964f901e833dd3497bc1f1a4fb6fc6ffef876ff 100644 (file)
@@ -511,9 +511,7 @@ void calendar_month_view(int year, int month, int day) {
        localtime_r(&thetime, &tm);
        while (tm.tm_wday != weekstart) {
                thetime = thetime - (time_t)86400;      /* go back 24 hours */
-               lprintf(9, "Subtracting a day, thetime is now %d - %s", thetime, ctime(&thetime));
                localtime_r(&thetime, &tm);
-               lprintf(9, "tm.tm_wday is %d, weekstart is %d\n", tm.tm_wday, weekstart);
        }
 
        /* Outer table (to get the background color) */