Skip to content

Commit

Permalink
Fixed issue #06211: Problems with two "file upload" question types in…
Browse files Browse the repository at this point in the history
… the same question group
  • Loading branch information
TMSWhite committed Jun 18, 2012
1 parent 45f9721 commit 9e80a50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/modaldialog.js
Expand Up @@ -129,7 +129,7 @@ function getQueryVariable(variable, url) {
function isValueInArray(arr, val) {
inArray = false;
for (i = 0; i < arr.length; i++) {
if (val === arr[i]) {
if (val.toLowerCase() == arr[i].toLowerCase()) {
inArray = true;
}
}
Expand Down

0 comments on commit 9e80a50

Please sign in to comment.