]> code.citadel.org Git - citadel.git/commitdiff
* oops a bug
authorArt Cancro <ajc@citadel.org>
Sun, 24 Sep 2000 21:50:46 +0000 (21:50 +0000)
committerArt Cancro <ajc@citadel.org>
Sun, 24 Sep 2000 21:50:46 +0000 (21:50 +0000)
webcit/messages.c

index 96846b7be8b9d2c67d48fc68dfd4fceb2882227d..10dfe9a8cb4ac42eb29d36dd56a484e6aee70924 100644 (file)
@@ -365,11 +365,12 @@ void readloop(char *oper)
                hi = b+maxmsgs+1;
                if (hi > nummsgs) hi = nummsgs;
                        if (WC->msgarr[b] != startmsg) {
-                               wprintf("<A HREF=\"/readfwd"
+                               wprintf("<A HREF=\"/%s"
                                        "?startmsg=%ld"
                                        "&maxmsgs=%d"
                                        "&summary=%d\">"
                                        "%d-%d</A> \n",
+                                               oper,
                                                WC->msgarr[b],
                                                maxmsgs,
                                                is_summary,
@@ -380,10 +381,11 @@ void readloop(char *oper)
                        }
 
                }
-               wprintf("<A HREF=\"/readfwd?startmsg=%ld"
+               wprintf("<A HREF=\"/%s?startmsg=%ld"
                        "&maxmsgs=999999&summary=%d\">"
                        "ALL"
                        "</A>&nbsp;&nbsp;&nbsp;",
+                       oper,
                        WC->msgarr[0], is_summary);
                wprintf("</TD></TR></TABLE></CENTER><HR>\n");
        }