I noticed the bug found by Devew on October 16th:
authorThierry Pasqualier <thierry@uncensored.citadel.org>
Sun, 21 Oct 2007 12:55:33 +0000 (12:55 +0000)
committerThierry Pasqualier <thierry@uncensored.citadel.org>
Sun, 21 Oct 2007 12:55:33 +0000 (12:55 +0000)
        If one creates an event but does not change the times of the
        event from the default values it doesn't show up in the day view at all.
But I have no solution. I suggest fixing the default value to 0 on the place of
9 hour. By waiting to fix it.

webcit/event.c

index cbcd7fa5a1af106a26b4a671b04821d6292c9a73..5b89dbf46db9442af3561868d1dc7ab42f0d3d35 100644 (file)
@@ -185,7 +185,7 @@ void display_edit_individual_event(icalcomponent *supplied_vevent, long msgnum)
                        tm_now.tm_sec = 0;
                }
                else {
-                       tm_now.tm_hour = 9;
+                       tm_now.tm_hour = 0;
                        tm_now.tm_min = 0;
                        tm_now.tm_sec = 0;
                }