X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fmessages.c;h=5f11916181b900c4f152af3f1ff15acb803fef27;hb=523c1b0f7a3002c6aaa3eb833b55eb0cf07674ff;hp=86df84f58d28600dd1ddc26500361902a537e429;hpb=0f38bf6aaa60e1c1cd9f57cf076fb98deba5e7ca;p=citadel.git diff --git a/webcit/messages.c b/webcit/messages.c index 86df84f58..5f1191618 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -924,7 +924,7 @@ void embed_message(void) { targetdiv = bstr("targetdiv"); print_it = bstr("print_it"); - output_headers(1, 0, 0, 0, 0, 1, 0); + output_headers(1, 0, 0, 0, 1, 0); begin_burst(); wprintf(""); @@ -1766,7 +1766,7 @@ void readloop(char *oper) if (strlen(sortby) == 0) sortby = sortpref_value; if (strlen(sortby) == 0) sortby = "msgid"; - output_headers(1, 1, 1, 0, 0, 0, 0); + output_headers(1, 1, 1, 0, 0, 0); /* When in summary mode, always show ALL messages instead of just * new or old. Otherwise, show what the user asked for. @@ -2376,7 +2376,7 @@ void display_enter(void) * Otherwise proceed normally. * Do a custom room banner with no navbar... */ - output_headers(1, 1, 2, 0, 0, 0, 0); + output_headers(1, 1, 2, 0, 0, 0); wprintf("
\n"); embed_room_banner(NULL, navbar_none); wprintf("
\n"); @@ -2575,7 +2575,7 @@ void delete_msg(void) msgid = atol(bstr("msgid")); - output_headers(1, 1, 1, 0, 0, 0, 0); + output_headers(1, 1, 1, 0, 0, 0); sprintf(buf, "DELE %ld", msgid); serv_puts(buf); @@ -2599,7 +2599,7 @@ void confirm_move_msg(void) msgid = atol(bstr("msgid")); - output_headers(1, 1, 1, 0, 0, 0, 0); + output_headers(1, 1, 1, 0, 0, 0); wprintf("
" "
"); @@ -2651,7 +2651,7 @@ void move_msg(void) msgid = atol(bstr("msgid")); - output_headers(1, 1, 1, 0, 0, 0, 0); + output_headers(1, 1, 1, 0, 0, 0); if (strlen(bstr("move_button")) > 0) { sprintf(buf, "MOVE %ld|%s", msgid, bstr("target_room"));