From: ivan Date: Sun, 28 Dec 2008 18:59:50 +0000 (+0000) Subject: deal with counties with spaces, etc., RT#4496 X-Git-Tag: freeside_1_7_4rc1~127 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=fb6e445f073e885001c5d84b89521b53056f6e24;p=freeside.git deal with counties with spaces, etc., RT#4496 --- diff --git a/httemplate/browse/cust_main_county.cgi b/httemplate/browse/cust_main_county.cgi index 256c51d4b..34f1000f3 100755 --- a/httemplate/browse/cust_main_county.cgi +++ b/httemplate/browse/cust_main_county.cgi @@ -175,9 +175,9 @@ $cgi->param('dummy', 1); my $filter_change = "window.location = '". $cgi->self_url. - ";country=' + document.getElementById('country').options[document.getElementById('country').selectedIndex].value + ". - "';state=' + document.getElementById('state').options[document.getElementById('state').selectedIndex].value +". - "';county=' + document.getElementById('county').options[document.getElementById('county').selectedIndex].value;"; + ";country=' + encodeURIComponent( document.getElementById('country').options[document.getElementById('country').selectedIndex].value ) + ". + "';state=' + encodeURIComponent( document.getElementById('state').options[document.getElementById('state').selectedIndex].value ) +". + "';county=' + encodeURIComponent( document.getElementById('county').options[document.getElementById('county').selectedIndex].value );"; #restore this so pagination works $cgi->param('country', $country) if $country;