- Timestamp:
- 10/05/2017 02:49:15 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r41684 r41770 950 950 951 951 if ( ! is_post_type_hierarchical( $this->screen->post_type ) && 'excerpt' === $mode && current_user_can( 'read_post', $post->ID ) ) { 952 echo esc_html( get_the_excerpt() ); 952 if ( post_password_required( $post ) ) { 953 echo '<span class="protected-post-excerpt">' . esc_html( get_the_excerpt() ) . '</span>'; 954 } else { 955 echo esc_html( get_the_excerpt() ); 956 } 953 957 } 954 958
Note: See TracChangeset
for help on using the changeset viewer.