Skip to content

Commit

Permalink
Bulk actions: do not move locked posts to the trash, props pdclark, s…
Browse files Browse the repository at this point in the history
…ee #23792

git-svn-id: http://core.svn.wordpress.org/trunk@23747 1a063a9b-81f0-0310-95a4-ce76da25c4cd
  • Loading branch information
azaozz committed Mar 18, 2013
1 parent e3590b9 commit 043d316
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions wp-admin/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
if ( $doaction ) {
check_admin_referer('bulk-posts');

$sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'ids'), wp_get_referer() );
$sendback = remove_query_arg( array('trashed', 'untrashed', 'deleted', 'locked', 'ids'), wp_get_referer() );
if ( ! $sendback )
$sendback = admin_url( $parent_file );
$sendback = add_query_arg( 'paged', $pagenum, $sendback );
Expand All @@ -75,17 +75,24 @@

switch ( $doaction ) {
case 'trash':
$trashed = 0;
$trashed = $locked = 0;

foreach( (array) $post_ids as $post_id ) {
if ( !current_user_can($post_type_object->cap->delete_post, $post_id) )
wp_die( __('You are not allowed to move this item to the Trash.') );

if ( wp_check_post_lock( $post_id ) ) {
$locked++;
continue;
}

if ( !wp_trash_post($post_id) )
wp_die( __('Error in moving to Trash.') );

$trashed++;
}
$sendback = add_query_arg( array('trashed' => $trashed, 'ids' => join(',', $post_ids) ), $sendback );

$sendback = add_query_arg( array('trashed' => $trashed, 'ids' => join(',', $post_ids), 'locked' => $locked ), $sendback );
break;
case 'untrash':
$untrashed = 0;
Expand Down

0 comments on commit 043d316

Please sign in to comment.