From: Art Cancro Date: Thu, 25 Aug 2011 21:28:18 +0000 (-0400) Subject: Fixed the remaining bugs that kept Drafts from working properly X-Git-Tag: v8.01~63^2~3 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=87d945420bbe4aaa3ed2e542b8df16e110ee0d85 Fixed the remaining bugs that kept Drafts from working properly --- diff --git a/webcit/messages.c b/webcit/messages.c index cb9001d05..3518737af 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -1010,7 +1010,7 @@ void post_message(void) int saving_to_drafts = 0; long HeaderLen = 0; - saving_to_drafts = !strcasecmp(bstr("submit_action"), "drafts"); + saving_to_drafts = !strcasecmp(bstr("submit_action"), "draft"); Buf = NewStrBuf(); if (saving_to_drafts) { @@ -1113,7 +1113,7 @@ void post_message(void) if (saving_to_drafts) { AppendImportantMessage(_("Message has been saved to Drafts.\n"), -1); gotoroom(WCC->CurRoom.name); - display_enter(); + readloop(readnew, eUseDefault); FreeStrBuf(&Buf); return; } else if ( (havebstr("recp"))