From 4c019c6aee8edc2f09b75c368c2b963c935e8e39 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 16 Sep 2015 11:37:25 +0000 Subject: [PATCH] Comments: Fix a fatal error in Comments meta box after [34223]. Props tyxla. Fixes #33893. See #33413. Built from https://develop.svn.wordpress.org/trunk@34231 git-svn-id: http://core.svn.wordpress.org/trunk@34195 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/list-table.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/list-table.php b/wp-admin/includes/list-table.php index 1ef843a534..dc900ca039 100644 --- a/wp-admin/includes/list-table.php +++ b/wp-admin/includes/list-table.php @@ -27,7 +27,7 @@ function _get_list_table( $class, $args = array() ) { 'WP_Terms_List_Table' => 'terms', 'WP_Users_List_Table' => 'users', 'WP_Comments_List_Table' => 'comments', - 'WP_Post_Comments_List_Table' => 'post-comments', + 'WP_Post_Comments_List_Table' => array( 'comments', 'post-comments' ), 'WP_Links_List_Table' => 'links', 'WP_Plugin_Install_List_Table' => 'plugin-install', 'WP_Themes_List_Table' => 'themes', diff --git a/wp-includes/version.php b/wp-includes/version.php index f139d32f29..0d6ced5b61 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34230'; +$wp_version = '4.4-alpha-34231'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.