X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=js%2Fcustomer_or_vendor_selection.js;h=b09183f7c0d0540aa12a4f4323574f4d78ce1e69;hb=339f80aa723d584e29fe42f5307d435d5c6a8cc8;hp=4d1bf8d7b53b084514cd58b517fa6b4556c6f0cd;hpb=91ab1ef646193de9359076a876a33a74d7691145;p=kivitendo-erp.git diff --git a/js/customer_or_vendor_selection.js b/js/customer_or_vendor_selection.js index 4d1bf8d7b..b09183f7c 100644 --- a/js/customer_or_vendor_selection.js +++ b/js/customer_or_vendor_selection.js @@ -2,15 +2,14 @@ function customer_or_vendor_selection_window(input_name, input_id, is_vendor, al var parm = centerParms(800,600) + ",width=800,height=600,status=yes,scrollbars=yes"; var name = document.getElementsByName(input_name)[0].value; url = "common.pl?" + + "INPUT_ENCODING=UTF-8&" + "action=cov_selection_internal&" + - "login=" + escape(document.forms[0].login.value) + "&" + - "password=" + escape(document.forms[0].password.value) + "&" + - "name=" + escape_more(name) + "&" + - "input_name=" + escape(input_name) + "&" + - "input_id=" + escape(input_id) + "&" + + "name=" + encodeURIComponent(name) + "&" + + "input_name=" + encodeURIComponent(input_name) + "&" + + "input_id=" + encodeURIComponent(input_id) + "&" + "is_vendor=" + (is_vendor ? "1" : "0") + "&" + "allow_both=" + (allow_both ? "1" : "0") + "&" + - "action_on_cov_selected=" + (action_on_cov_selected ? escape(action_on_cov_selected) : "") + "action_on_cov_selected=" + (action_on_cov_selected ? encodeURIComponent(action_on_cov_selected) : "") //alert(url); window.open(url, "_new_cov_selection", parm); }