Skip to content

Commit d12175d

Browse files
committed
fixed another case of html entities not being encoded properly
1 parent 0d00239 commit d12175d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

js/jquery.ui.plupload/jquery.ui.plupload.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ $.widget("ui.plupload", {
11671167
return ext;
11681168

11691169
default:
1170-
return file[$1] || '';
1170+
return plupload.xmlEncode(file[$1] || '');
11711171
}
11721172
});
11731173
});

js/jquery.ui.plupload/jquery.ui.plupload.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/plupload.full.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"Silverlight",
1616
"moxie"
1717
],
18-
"version": "2.3.8",
18+
"version": "2.3.9",
1919
"releaseDate": "2021-11-15",
2020
"author": "Ephox",
2121
"contributors": [{

src/jquery.ui.plupload/jquery.ui.plupload.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1167,7 +1167,7 @@ $.widget("ui.plupload", {
11671167
return ext;
11681168

11691169
default:
1170-
return file[$1] || '';
1170+
return plupload.xmlEncode(file[$1] || '');
11711171
}
11721172
});
11731173
});

0 commit comments

Comments
 (0)