Skip to content

Commit

Permalink
fixed another case of html entities not being encoded properly
Browse files Browse the repository at this point in the history
  • Loading branch information
spocke committed Nov 15, 2021
1 parent 0d00239 commit d12175d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion js/jquery.ui.plupload/jquery.ui.plupload.js
Expand Up @@ -1167,7 +1167,7 @@ $.widget("ui.plupload", {
return ext;

default:
return file[$1] || '';
return plupload.xmlEncode(file[$1] || '');
}
});
});
Expand Down
2 changes: 1 addition & 1 deletion js/jquery.ui.plupload/jquery.ui.plupload.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions js/plupload.full.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -15,7 +15,7 @@
"Silverlight",
"moxie"
],
"version": "2.3.8",
"version": "2.3.9",
"releaseDate": "2021-11-15",
"author": "Ephox",
"contributors": [{
Expand Down
2 changes: 1 addition & 1 deletion src/jquery.ui.plupload/jquery.ui.plupload.js
Expand Up @@ -1167,7 +1167,7 @@ $.widget("ui.plupload", {
return ext;

default:
return file[$1] || '';
return plupload.xmlEncode(file[$1] || '');
}
});
});
Expand Down

0 comments on commit d12175d

Please sign in to comment.