mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-06-02 04:15:05 +02:00
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:
@@ -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) }),
|
||||
|
||||
Reference in New Issue
Block a user