X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/kivitendo-erp.git/blobdiff_plain/fb4d2ffa6aae03b36e4db77be10c3d9dce4413f8..28d69bb85e934088a56e6e8458cd08d3794e1f8b:/js/show_vc_details.js diff --git a/js/show_vc_details.js b/js/show_vc_details.js index b85614bc6..067a264cd 100644 --- a/js/show_vc_details.js +++ b/js/show_vc_details.js @@ -6,11 +6,10 @@ function show_vc_details(vc) { if (vc_id) vc_id = vc_id[0].value; url = "common.pl?" + + "INPUT_ENCODING=UTF-8&" + "action=show_vc_details&" + - "login=" + escape(document.getElementsByName("login")[0].value) + "&" + - "password=" + escape(document.getElementsByName("password")[0].value) + "&" + - "vc=" + escape(vc) + "&" + - "vc_id=" + escape(vc_id) + "vc=" + encodeURIComponent(vc) + "&" + + "vc_id=" + encodeURIComponent(vc_id) //alert(url); window.open(url, "_new_generic", parm); }