﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc	focuses
65102	"WP_MS_Users_List_Table::display_rows() should emit id=""user-{ID}"" on <tr> to match WP_Users_List_Table"	dd32	johnjamesjacoby	"`WP_Users_List_Table::single_row()` (used on per-site `wp-admin/users.php`) renders each user row with:
{{{
  <tr id=""user-123"">...</tr>
}}}
…but its network counterpart `WP_MS_Users_List_Table::display_rows()` (used on `wp-admin/network/users.php`) renders:
{{{
  <tr class=""..."">...</tr>
}}}
No id, no per-user anchor.

This makes it impossible to target a specific user row by ID on the network screen using stylesheets, JavaScript, or assistive-tech anchors, even though the per-site table supports it. Plugins that decorate / restyle specific user rows have to fall back to scraping the bulk-action checkbox (`#blog_{ID}`) and walking `.closest('tr')` — a brittle workaround.

Expected: `<tr>` on the network Users list carries `id=""user-{ID}""` like the per-site list.

Actual: No row id at all.
"	defect (bug)	accepted	normal	7.1	Users		normal		has-patch commit		administration, multisite
