diff options
author | ivan <ivan> | 2008-12-28 18:59:49 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-12-28 18:59:49 +0000 |
commit | 2ab9b9a5c4d0ef093f0d8bef8627b568d6760995 (patch) | |
tree | 7e170a3b499b7a53461b5455edebbfadb8908f8c | |
parent | 0cc06d0142a93722c14da37369ad9745c2d0e571 (diff) |
deal with counties with spaces, etc., RT#4496
-rwxr-xr-x | httemplate/browse/cust_main_county.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
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; |