Skip to content

Commit d52c550

Browse files
committed
Administration: Fix e2e tests after removing aria-label.
Follow-up to [61738]. Updates e2e tests to use new link name. Applies change to omitted case in term list tables. Props joedolson. Fixes #33002. Built from https://develop.svn.wordpress.org/trunk@61740 git-svn-id: http://core.svn.wordpress.org/trunk@61046 1a063a9b-81f0-0310-95a4-ce76da25c4cd
1 parent f4e9e82 commit d52c550

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

wp-admin/includes/class-wp-terms-list-table.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -413,10 +413,8 @@ public function column_name( $tag ) {
413413
$edit_link
414414
);
415415
$name = sprintf(
416-
'<a class="row-title" href="%s" aria-label="%s">%s</a>',
416+
'<a class="row-title" href="%s">%s</a>',
417417
esc_url( $edit_link ),
418-
/* translators: %s: Taxonomy term name. */
419-
esc_attr( sprintf( __( '&#8220;%s&#8221; (Edit)' ), $tag->name ) ),
420418
$name
421419
);
422420
}

wp-includes/version.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @global string $wp_version
1818
*/
19-
$wp_version = '7.0-beta1-61739';
19+
$wp_version = '7.0-beta1-61740';
2020

2121
/**
2222
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.

0 commit comments

Comments
 (0)