Block editing of post_mime_type and guid in bulk_edit_posts(). More filter unsets. For trunk

git-svn-id: https://develop.svn.wordpress.org/trunk@18369 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2011-06-28 21:47:35 +00:00
parent acc022ea36
commit 6022d6e39c
1 changed files with 9 additions and 3 deletions

View File

@ -143,8 +143,7 @@ function edit_post( $post_data = null ) {
$post_data = &$_POST;
// Clear out any data in internal vars.
if ( isset( $post_data['filter'] ) )
unset( $post_data['filter'] );
unset( $post_data['filter'] );
$post_ID = (int) $post_data['post_ID'];
$post = get_post( $post_ID );
@ -352,7 +351,8 @@ function bulk_edit_posts( $post_data = null ) {
continue;
}
$tax_names = get_object_taxonomies( get_post($post_ID) );
$post = get_post( $post_ID );
$tax_names = get_object_taxonomies( $post );
foreach ( $tax_names as $tax_name ) {
$taxonomy_obj = get_taxonomy($tax_name);
if ( isset( $tax_input[$tax_name]) && current_user_can( $taxonomy_obj->cap->assign_terms ) )
@ -374,6 +374,9 @@ function bulk_edit_posts( $post_data = null ) {
unset( $post_data['tax_input']['category'] );
}
$post_data['post_mime_type'] = $post->post_mime_type;
$post_data['guid'] = $post->guid;
$post_data['ID'] = $post_ID;
$updated[] = wp_update_post( $post_data );
@ -545,6 +548,9 @@ function wp_write_post() {
$_POST['post_mime_type'] = '';
// Clear out any data in internal vars.
unset( $_POST['filter'] );
// Check for autosave collisions
// Does this need to be updated? ~ Mark
$temp_id = false;