Revert previous commit because it didn't work. Furthermore, remove the content-lengt...
authorArt Cancro <ajc@citadel.org>
Wed, 24 Nov 2021 04:53:00 +0000 (23:53 -0500)
committerArt Cancro <ajc@citadel.org>
Wed, 24 Nov 2021 04:53:00 +0000 (23:53 -0500)
webcit-ng/messages.c
webcit-ng/static/js/view_forum.js

index 597e5f0d32432df9acfd3ca1285180474962b110..adc4260adc5d5da5430049f902d91c65930d8636 100644 (file)
@@ -136,7 +136,6 @@ void dav_get_message(struct http_transaction *h, struct ctdlsession *c, long msg
 void dav_put_message(struct http_transaction *h, struct ctdlsession *c, char *euid, long old_msgnum) {
        char buf[1024];
        char *content_type = NULL;
-       char *content_transfer_encoding = NULL;
        int n;
        long new_msgnum;
        char new_euid[1024];
@@ -160,12 +159,6 @@ void dav_put_message(struct http_transaction *h, struct ctdlsession *c, char *eu
 
        content_type = header_val(h, "Content-type");
        ctdl_printf(c, "Content-type: %s\r\n", (content_type ? content_type : "application/octet-stream"));
-
-       content_transfer_encoding = header_val(h, "Content-Transfer-Encoding");
-       if (!IsEmptyStr(content_transfer_encoding)) {
-               ctdl_printf(c, "Content-Transfer-Encoding: %s\r\n", content_transfer_encoding);
-       }
-
        ctdl_printf(c, "\r\n");
        ctdl_write(c, h->request_body, h->request_body_length);
        if (h->request_body[h->request_body_length] != '\n') {
index fb9121b58fe35c3c5f67beabd3918f3c75577603..56b6a589b1e100fa73b3bdc8704d40170ff0cb63 100644 (file)
@@ -263,14 +263,6 @@ function cancel_post(div_name) {
 }
 
 
-// Save the posted message to the server
-function Xsave_message(div_name, reply_to_msgnum) {
-       msg_text = "<html><body>" + document.getElementById("ctdl-editor-body").innerHTML + "</body></html>\n";
-       m = btoa(msg_text);
-       alert(m);
-}
-
-
 // Save the posted message to the server
 function save_message(div_name, reply_to_msgnum) {
        msg_text = "<html><body>" + document.getElementById("ctdl-editor-body").innerHTML + "</body></html>\n";
@@ -279,7 +271,6 @@ function save_message(div_name, reply_to_msgnum) {
        var request = new XMLHttpRequest();
        request.open("PUT", url, true);
        request.setRequestHeader("Content-type", "text/html");
-       request.setRequestHeader("Content-length", msg_text.length);
        request.onreadystatechange = function() {
                if (request.readyState == 4) {
                        if (Math.trunc(request.status / 100) == 2) {