mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-01 05:57:55 +01:00
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. Merges [43191] to the 4.9 branch. Fixes #44015. Built from https://develop.svn.wordpress.org/branches/4.9@43192 git-svn-id: http://core.svn.wordpress.org/branches/4.9@43021 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9209c0738c
commit
547912fbfc
@ -1320,7 +1320,7 @@ abstract class WP_Privacy_Requests_Table extends WP_List_Table {
|
|||||||
public function single_row( $item ) {
|
public function single_row( $item ) {
|
||||||
$status = $item->status;
|
$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 );
|
$this->single_row_columns( $item );
|
||||||
echo '</tr>';
|
echo '</tr>';
|
||||||
}
|
}
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.9.6-beta1-43190';
|
$wp_version = '4.9.6-beta1-43192';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user