Privacy: Add id attribute to WP_Privacy_Requests_Table and WP_Privacy_Data_Export_Requests_Table rows, for consistency with other post list tables.

Props desrosj.
Fixes #44015.
Built from https://develop.svn.wordpress.org/trunk@43191


git-svn-id: http://core.svn.wordpress.org/trunk@43020 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2018-05-09 15:06:22 +00:00
parent db66ae1123
commit 367c2e945a
2 changed files with 2 additions and 2 deletions

View File

@ -1361,7 +1361,7 @@ abstract class WP_Privacy_Requests_Table extends WP_List_Table {
public function single_row( $item ) {
$status = $item->status;
echo '<tr class="status-' . esc_attr( $status ) . '">';
echo '<tr id="request-' . esc_attr( $item->ID ) . '" class="status-' . esc_attr( $status ) . '">';
$this->single_row_columns( $item );
echo '</tr>';
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-43189';
$wp_version = '5.0-alpha-43191';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.