Avoid stomping of bulk postdata inside the bulk_edit_posts() loop.

Merges [27990] to the 3.7 branch.

props kovshenin.
see [27964], see #27452.


git-svn-id: https://develop.svn.wordpress.org/branches/3.7@27992 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2014-04-07 19:36:01 +00:00
parent 5a2231e357
commit 7dcfefa424

View File

@ -460,13 +460,13 @@ function bulk_edit_posts( $post_data = null ) {
$post_data['ID'] = $post_ID;
$post_data['post_ID'] = $post_ID;
$post_data = _wp_translate_postdata( true, $post_data );
if ( is_wp_error( $post_data ) ) {
$translated_post_data = _wp_translate_postdata( true, $post_data );
if ( is_wp_error( $translated_post_data ) ) {
$skipped[] = $post_ID;
continue;
}
$updated[] = wp_update_post( $post_data );
$updated[] = wp_update_post( $translated_post_data );
if ( isset( $post_data['sticky'] ) && current_user_can( $ptype->cap->edit_others_posts ) ) {
if ( 'sticky' == $post_data['sticky'] )