MS: Remove registration of ID column in Sites and Users list tables.
Reverts a portion of [34289] and leaves the render for the column behind. A plugin can register these fields for display via filter. Fixes #18661. Built from https://develop.svn.wordpress.org/trunk@34750 git-svn-id: http://core.svn.wordpress.org/trunk@34715 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
f69396c229
commit
7c7eee01ef
|
@ -200,7 +200,6 @@ class WP_MS_Sites_List_Table extends WP_List_Table {
|
|||
public function get_columns() {
|
||||
$sites_columns = array(
|
||||
'cb' => '<input type="checkbox" />',
|
||||
'id' => __( 'ID' ),
|
||||
'blogname' => __( 'URL' ),
|
||||
'lastupdated' => __( 'Last Updated' ),
|
||||
'registered' => _x( 'Registered', 'site' ),
|
||||
|
|
|
@ -149,7 +149,6 @@ class WP_MS_Users_List_Table extends WP_List_Table {
|
|||
public function get_columns() {
|
||||
$users_columns = array(
|
||||
'cb' => '<input type="checkbox" />',
|
||||
'id' => __( 'ID' ),
|
||||
'username' => __( 'Username' ),
|
||||
'name' => __( 'Name' ),
|
||||
'email' => __( 'Email' ),
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.4-alpha-34749';
|
||||
$wp_version = '4.4-alpha-34750';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue