diff --git a/src/wp-admin/includes/class-wp-media-list-table.php b/src/wp-admin/includes/class-wp-media-list-table.php
index 170ec5a..d62becd 100644
|
a
|
b
|
class WP_Media_List_Table extends WP_List_Table { |
| 480 | 480 | if ( $parent_type && $parent_type->show_ui && current_user_can( 'edit_post', $post->post_parent ) ) { |
| 481 | 481 | ?> |
| 482 | 482 | <strong><a href="<?php echo get_edit_post_link( $post->post_parent ); ?>"> |
| 483 | | <?php echo $title ?></a></strong><?php |
| | 483 | <?php echo $title; ?></a></strong><?php |
| 484 | 484 | } elseif ( $parent_type && current_user_can( 'read_post', $post->post_parent ) ) { |
| 485 | 485 | ?> |
| 486 | | <strong><?php echo $title ?></strong><?php |
| | 486 | <strong><?php echo $title; ?></strong><?php |
| 487 | 487 | } else { |
| 488 | 488 | _e( '(Private post)' ); |
| 489 | 489 | } |