From 547912fbfc267946c439110e36ed856dbba1465c Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 9 May 2018 15:08:26 +0000 Subject: [PATCH] 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 --- wp-admin/includes/user.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/user.php b/wp-admin/includes/user.php index 12f3d965a3..49508a7f43 100644 --- a/wp-admin/includes/user.php +++ b/wp-admin/includes/user.php @@ -1320,7 +1320,7 @@ abstract class WP_Privacy_Requests_Table extends WP_List_Table { public function single_row( $item ) { $status = $item->status; - echo ''; + echo ''; $this->single_row_columns( $item ); echo ''; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 948990f614..5a0cd75bd8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @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.