Changeset 8481
- Timestamp:
- 07/28/2008 11:58:46 PM (16 years ago)
- Location:
- branches/2.6
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.6/wp-admin/revision.php
r8306 r8481 134 134 $title = __( 'Post Revisions' ); 135 135 } 136 137 // Converts post_author ID# into name138 add_filter( '_wp_post_revision_field_post_author', 'get_author_name' );139 136 140 137 require_once( 'admin-header.php' ); -
branches/2.6/wp-includes/post.php
r8261 r8481 3114 3114 $fields = array( 3115 3115 'post_title' => __( 'Title' ), 3116 'post_author' => __( 'Author' ),3117 3116 'post_content' => __( 'Content' ), 3118 3117 'post_excerpt' => __( 'Excerpt' ), … … 3123 3122 3124 3123 // 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 ) 3126 3125 unset( $fields[$protect] ); 3127 3126 }
Note: See TracChangeset
for help on using the changeset viewer.