From 073093a096f7fb023c1a68498329bac527bd274c Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Sat, 25 Sep 2004 03:34:21 +0000 Subject: [PATCH] * summary.c: Fixed a calling syntax problem --- webcit/ChangeLog | 4 +++- webcit/summary.c | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/webcit/ChangeLog b/webcit/ChangeLog index 2efbcbec9..918ee9997 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,4 +1,7 @@ $Log$ +Revision 523.10 2004/09/25 03:34:21 ajc +* summary.c: Fixed a calling syntax problem + Revision 523.9 2004/09/25 03:18:43 ajc * small stylesheet fix @@ -2067,4 +2070,3 @@ Sun Dec 6 19:50:55 EST 1998 Art Cancro 1998-12-03 Nathan Bryant * webserver.c: warning fix - diff --git a/webcit/summary.c b/webcit/summary.c index 142d6165a..f287534a7 100644 --- a/webcit/summary.c +++ b/webcit/summary.c @@ -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; } -- 2.39.2