Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[FIXED JENKINS-9376] ajax form validation with international characte…
…rs in configuration name
  • Loading branch information
bap2000 committed Apr 15, 2011
1 parent 4c5ade4 commit debc24f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/js/pos.js
Expand Up @@ -37,7 +37,7 @@ function bap_get_configName(setting) {
}

function bap_get_configName_qs(setting) {
return "&configName=" + escape(bap_get_configName(setting).value);
return "&configName=" + encodeURIComponent(bap_get_configName(setting).value);
}

function bap_show_row(row) {
Expand Down

0 comments on commit debc24f

Please sign in to comment.