From 2e7451798e995a31de43756aa8103f399f2143c7 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 25 Aug 2011 17:28:18 -0400 Subject: [PATCH] Fixed the remaining bugs that kept Drafts from working properly --- webcit/messages.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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")) -- 2.30.2