X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fdunning.js;h=9a794a985cf37c353e95e7395e61cb79b836464a;hb=af8f0a39dd0739e1ec5acdeee46bc28cd891de69;hp=2766fc6c1e6f7bcd4c56ff508df758c2c193d774;hpb=4d983050f03928be977a3f04ef460ac0ff39f628;p=kivitendo-erp.git diff --git a/js/dunning.js b/js/dunning.js index 2766fc6c1..9a794a985 100644 --- a/js/dunning.js +++ b/js/dunning.js @@ -1,14 +1,13 @@ function set_email_window(input_subject, input_body, input_attachment) { var parm = centerParms(800,600) + ",width=800,height=600,status=yes,scrollbars=yes"; var url = "dn.pl?" + + "INPUT_ENCODING=UTF-8&" + "action=set_email&" + - "login=" + encodeURIComponent(document.getElementsByName("login")[0].value)+ "&"+ - "password=" + encodeURIComponent(document.getElementsByName("password")[0].value) + "&" + - "email_subject=" + escape(document.getElementsByName(input_subject)[0].value) + "&" + - "email_body=" + escape(document.getElementsByName(input_body)[0].value) + "&" + - "email_attachment=" + escape(document.getElementsByName(input_attachment)[0].value) + "&" + - "input_subject=" + escape(input_subject) + "&" + - "input_body=" + escape(input_body) + "&" + - "input_attachment=" + escape(input_attachment); + "email_subject=" + encodeURIComponent(document.getElementsByName(input_subject)[0].value) + "&" + + "email_body=" + encodeURIComponent(document.getElementsByName(input_body)[0].value) + "&" + + "email_attachment=" + encodeURIComponent(document.getElementsByName(input_attachment)[0].value) + "&" + + "input_subject=" + encodeURIComponent(input_subject) + "&" + + "input_body=" + encodeURIComponent(input_body) + "&" + + "input_attachment=" + encodeURIComponent(input_attachment); window.open(url, "_new_generic", parm); }