X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit-ng%2Fstatic%2Fjs%2Fview_forum.js;h=9eebfb79f7a22fad3bb7709005170ece60605c1d;hb=bf499ebf1dac652027fef8a5c78bee3822541bc7;hp=86f697cf3eac18d4542dc984e0af690e510099bc;hpb=a054aa798b13cbc18e86b744357ec7a13932708c;p=citadel.git diff --git a/webcit-ng/static/js/view_forum.js b/webcit-ng/static/js/view_forum.js index 86f697cf3..9eebfb79f 100644 --- a/webcit-ng/static/js/view_forum.js +++ b/webcit-ng/static/js/view_forum.js @@ -415,21 +415,11 @@ function forum_save_message(editor_div_name) { + "/dummy_name_for_new_message" + "?wefw=" + wefw + "&subj=" + subj - boundary = randomString(); - body_text = - "--" + boundary + "\r\n" - + "Content-type: text/html\r\n" - + "Content-transfer-encoding: quoted-printable\r\n" - + "\r\n" - + quoted_printable_encode( - "" + document.getElementById("ctdl-editor-body").innerHTML + "" - ) + "\r\n" - + "--" + boundary + "--\r\n" - ; + body_text = "" + document.getElementById("ctdl-editor-body").innerHTML + "\r\n"; var request = new XMLHttpRequest(); request.open("PUT", url, true); - request.setRequestHeader("Content-type", "multipart/mixed; boundary=\"" + boundary + "\""); + request.setRequestHeader("Content-type", "text/html"); request.onreadystatechange = function() { if (request.readyState == 4) { document.body.style.cursor = "default";