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
This commit is contained in:
joedolson
2026-02-25 22:52:44 +00:00
parent f4e9e8251b
commit d52c55096a
2 changed files with 2 additions and 4 deletions

View File

@@ -413,10 +413,8 @@ class WP_Terms_List_Table extends WP_List_Table {
$edit_link
);
$name = sprintf(
'<a class="row-title" href="%s" aria-label="%s">%s</a>',
'<a class="row-title" href="%s">%s</a>',
esc_url( $edit_link ),
/* translators: %s: Taxonomy term name. */
esc_attr( sprintf( __( '&#8220;%s&#8221; (Edit)' ), $tag->name ) ),
$name
);
}

View File

@@ -16,7 +16,7 @@
*
* @global string $wp_version
*/
$wp_version = '7.0-beta1-61739';
$wp_version = '7.0-beta1-61740';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.