In media.view.BulkSelectionActionButton.click(), do not assume that delete is the only possible bulk action.
Fixes #29101. Built from https://develop.svn.wordpress.org/trunk@29403 git-svn-id: http://core.svn.wordpress.org/trunk@29181 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -647,10 +647,12 @@
|
||||
var selection = this.controller.controller.state().get('selection');
|
||||
media.view.Button.prototype.click.apply( this, arguments );
|
||||
|
||||
// Currently assumes delete is the only action
|
||||
if ( confirm( l10n.warnBulkDelete ) ) {
|
||||
while ( selection.length > 0) {
|
||||
selection.at(0).destroy();
|
||||
if ( 'delete' === this.controller.model.get( 'currentAction' ) ) {
|
||||
// Currently assumes delete is the only action
|
||||
if ( confirm( l10n.warnBulkDelete ) ) {
|
||||
while ( selection.length > 0 ) {
|
||||
selection.at(0).destroy();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
2
wp-includes/js/media-grid.min.js
vendored
2
wp-includes/js/media-grid.min.js
vendored
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user