* summary.c: Fixed a calling syntax problem
authorArt Cancro <ajc@citadel.org>
Sat, 25 Sep 2004 03:34:21 +0000 (03:34 +0000)
committerArt Cancro <ajc@citadel.org>
Sat, 25 Sep 2004 03:34:21 +0000 (03:34 +0000)
webcit/ChangeLog
webcit/summary.c

index 2efbcbec95617a13222657c2ad3e7f17f0ff688c..918ee9997337f7f160e10f8be2ced67dac453e70 100644 (file)
@@ -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 <ajc@uncnsrd.mt-kisco.ny.us>
 
 1998-12-03 Nathan Bryant <bryant@cs.usm.maine.edu>
        * webserver.c: warning fix
-
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&nbsp;on&nbsp;your&nbsp;calendar");
        do_template("beginbox");
 #ifdef WEBCIT_WITH_CALENDAR_SERVICE
-       gotoroom("Calendar", 0);
+       gotoroom("Calendar");
        if (strcasecmp(WC->wc_roomname, "Calendar")) {
                num_msgs = 0;
        }