From: Matt Date: Sun, 5 Oct 2008 11:54:14 +0000 (+0000) Subject: add begin_burst to "citadel version too low" failure X-Git-Tag: v7.86~1872 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=bc324040603a650bcf75762dded7287ef710cf9b add begin_burst to "citadel version too low" failure --- diff --git a/webcit/webcit.c b/webcit/webcit.c index 7a6fa4e3a..e2555614e 100644 --- a/webcit/webcit.c +++ b/webcit/webcit.c @@ -1637,6 +1637,7 @@ void session_loop(HashList *HTTPHeaders, StrBuf *ReqLine, StrBuf *request_method get_serv_info(browser_host, user_agent); if (serv_info.serv_rev_level < MINIMUM_CIT_VERSION) { + begin_burst(); wprintf(_("You are connected to a Citadel " "server running Citadel %d.%02d. \n" "In order to run this version of WebCit " @@ -1647,6 +1648,7 @@ void session_loop(HashList *HTTPHeaders, StrBuf *ReqLine, StrBuf *request_method MINIMUM_CIT_VERSION / 100, MINIMUM_CIT_VERSION % 100 ); + end_burst(); end_webcit_session(); goto SKIP_ALL_THIS_CRAP; }