feature #593, send image_ids as a coma separated string

... instead of a list, because default behavior of web servers is to limit
the number of input fields and we don't want such a limit.
This commit is contained in:
plegall
2017-01-09 14:07:47 +01:00
parent ba3ddf01ff
commit 3fb5651143
@@ -282,7 +282,7 @@ jQuery('#applyAction').click(function(e) {
method: "pwg.images.delete",
pwg_token: jQuery("input[name=pwg_token").val(),
return_details: true,
image_id: image_ids
image_id: image_ids.join(',')
},
dataType: 'json',
success: ( function(data) { todo += data.result.details.nb_processed; progressDelete(todo, progressBar_max, data.result.success) }),