Join files with names containing ampersand

This commit is contained in:
prpr 2022-03-25 23:02:14 +00:00
parent 3dc3404327
commit e5a8f12a15
1 changed files with 1 additions and 1 deletions

View File

@ -1046,7 +1046,7 @@ $('#join').button({icons: {primary: "ui-icon-video"}})
.click(function() {
var files = new Array();
var els = $('input.fsts:checked + a').each(function() {
files.push($(this).attr('file'));
files.push(encodeURIComponent($(this).attr('file')));
});
//console.log("%o", files);
window.location.href = '/browse/join/join.jim?files=' +