Changeset 61738
- Timestamp:
- 02/25/2026 08:22:30 PM (2 months ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
-
class-wp-media-list-table.php (modified) (1 diff)
-
class-wp-posts-list-table.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-media-list-table.php
r61683 r61738 491 491 if ( current_user_can( 'edit_post', $post->ID ) && ! $this->is_trash ) { 492 492 $link_start = sprintf( 493 '<a href="%s" aria-label="%s">',493 '<a href="%s">', 494 494 get_edit_post_link( $post->ID ), 495 /* translators: %s: Attachment title. */496 esc_attr( sprintf( __( '“%s” (Edit)' ), $title ) )497 495 ); 498 496 $link_end = '</a>'; -
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r61651 r61738 1139 1139 if ( $can_edit_post && 'trash' !== $post->post_status ) { 1140 1140 printf( 1141 '<a class="row-title" href="%s" aria-label="%s">%s%s</a>',1141 '<a class="row-title" href="%s">%s%s</a>', 1142 1142 get_edit_post_link( $post->ID ), 1143 /* translators: %s: Post title. */1144 esc_attr( sprintf( __( '“%s” (Edit)' ), $title ) ),1145 1143 $pad, 1146 1144 $title
Note: See TracChangeset
for help on using the changeset viewer.