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:
Jeremy Felt 2015-10-01 20:58:24 +00:00
parent f69396c229
commit 7c7eee01ef
3 changed files with 1 additions and 3 deletions

View File

@ -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' ),

View File

@ -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' ),

View File

@ -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.