]> code.citadel.org Git - citadel.git/blobdiff - webcit/summary.c
* summary.c: Fixed a calling syntax problem
[citadel.git] / webcit / summary.c
index 142d6165a77da52f4bb743f043d8ba8971e1d2b0..f287534a75d9dcaea2590fb3dd2907abe601a628 100644 (file)
@@ -135,7 +135,7 @@ void tasks_section(void) {
        svprintf("BOXTITLE", WCS_STRING, "Tasks");
        do_template("beginbox");
 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
-       gotoroom("Tasks", 0);
+       gotoroom("Tasks");
        if (strcasecmp(WC->wc_roomname, "Tasks")) {
                num_msgs = 0;
        }
@@ -171,7 +171,7 @@ void calendar_section(void) {
        svprintf("BOXTITLE", WCS_STRING, "Today on your calendar");
        do_template("beginbox");
 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
-       gotoroom("Calendar", 0);
+       gotoroom("Calendar");
        if (strcasecmp(WC->wc_roomname, "Calendar")) {
                num_msgs = 0;
        }