X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/d629acd82a27e980899a044ca8b0f4becc8e94bb..0534e31033f43074b6e4ae2a1178609bd15e9813:/js/vendor_selection.js diff --git a/js/vendor_selection.js b/js/vendor_selection.js index 19e232d4e..298635770 100644 --- a/js/vendor_selection.js +++ b/js/vendor_selection.js @@ -3,11 +3,9 @@ function vendor_selection_window(input_name, input_id) { var name = document.getElementsByName(input_name)[0].value; url = "common.pl?" + "action=vendor_selection&" + - "login=" + escape(document.getElementsByName("login")[0].value) + "&" + - "password=" + escape(document.getElementsByName("password")[0].value) + "&" + - "name=" + escape(name) + "&" + - "input_name=" + escape(input_name) + "&" + - "input_id=" + escape(input_id) + "name=" + encodeURIComponent(name) + "&" + + "input_name=" + encodeURIComponent(input_name) + "&" + + "input_id=" + encodeURIComponent(input_id) //alert(url); window.open(url, "_new_generic", parm); }