From: Art Cancro Date: Sat, 25 Sep 2004 03:34:21 +0000 (+0000) Subject: * summary.c: Fixed a calling syntax problem X-Git-Tag: v7.86~5243 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=073093a096f7fb023c1a68498329bac527bd274c;p=citadel.git * summary.c: Fixed a calling syntax problem --- 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; }