Ticket #7317: 7317.diff

File 7317.diff, 1.3 KB (added by mdawaffe, 4 years ago)
  • wp-includes/post.php

     
    31133113                // Allow these to be versioned 
    31143114                $fields = array( 
    31153115                        'post_title' => __( 'Title' ), 
    3116                         'post_author' => __( 'Author' ), 
    31173116                        'post_content' => __( 'Content' ), 
    31183117                        'post_excerpt' => __( 'Excerpt' ), 
    31193118                ); 
     
    31223121                $fields = apply_filters( '_wp_post_revision_fields', $fields ); 
    31233122 
    31243123                // WP uses these internally either in versioning or elsewhere - they cannot be versioned 
    3125                 foreach ( array( 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count' ) as $protect ) 
     3124                foreach ( array( 'ID', 'post_name', 'post_parent', 'post_date', 'post_date_gmt', 'post_status', 'post_type', 'comment_count', 'post_author' ) as $protect ) 
    31263125                        unset( $fields[$protect] ); 
    31273126        } 
    31283127 
  • wp-admin/revision.php

     
    134134        $title = __( 'Post Revisions' ); 
    135135} 
    136136 
    137 // Converts post_author ID# into name 
    138 add_filter( '_wp_post_revision_field_post_author', 'get_author_name' ); 
    139  
    140137require_once( 'admin-header.php' ); 
    141138 
    142139?>