diff --git a/wp-admin/includes/class-wp-comments-list-table.php b/wp-admin/includes/class-wp-comments-list-table.php index 8abbbdcb06..73da78ccd8 100644 --- a/wp-admin/includes/class-wp-comments-list-table.php +++ b/wp-admin/includes/class-wp-comments-list-table.php @@ -487,7 +487,9 @@ class WP_Comments_List_Table extends WP_List_Table { } /** - * Display the comments table. Override the parent method to render extra comments. + * Displays the comments table. + * + * Overrides the parent display() method to render extra comments. * * @since 3.1.0 */ diff --git a/wp-admin/includes/class-wp-list-table.php b/wp-admin/includes/class-wp-list-table.php index e5d12ceae9..cf0c05c2ab 100644 --- a/wp-admin/includes/class-wp-list-table.php +++ b/wp-admin/includes/class-wp-list-table.php @@ -1173,7 +1173,7 @@ class WP_List_Table { } /** - * Display the table + * Displays the table. * * @since 3.1.0 */ diff --git a/wp-admin/includes/class-wp-plugin-install-list-table.php b/wp-admin/includes/class-wp-plugin-install-list-table.php index 89149daf86..acea5c4b28 100644 --- a/wp-admin/includes/class-wp-plugin-install-list-table.php +++ b/wp-admin/includes/class-wp-plugin-install-list-table.php @@ -333,7 +333,11 @@ class WP_Plugin_Install_List_Table extends WP_List_Table { } /** - * Override the parent display() so we can provide a different container. + * Displays the plugin install table. + * + * Overrides the parent display() method to provide a different container. + * + * @since 4.0.0 */ public function display() { $singular = $this->_args['singular']; diff --git a/wp-admin/includes/class-wp-theme-install-list-table.php b/wp-admin/includes/class-wp-theme-install-list-table.php index ed6e12c381..637785f392 100644 --- a/wp-admin/includes/class-wp-theme-install-list-table.php +++ b/wp-admin/includes/class-wp-theme-install-list-table.php @@ -187,6 +187,11 @@ class WP_Theme_Install_List_Table extends WP_Themes_List_Table { } /** + * Displays the theme install table. + * + * Overrides the parent display() method to provide a different container. + * + * @since 3.1.0 */ public function display() { wp_nonce_field( 'fetch-list-' . get_class( $this ), '_ajax_fetch_list_nonce' ); diff --git a/wp-admin/includes/class-wp-themes-list-table.php b/wp-admin/includes/class-wp-themes-list-table.php index fa0addab9e..1e600cb632 100644 --- a/wp-admin/includes/class-wp-themes-list-table.php +++ b/wp-admin/includes/class-wp-themes-list-table.php @@ -151,6 +151,11 @@ class WP_Themes_List_Table extends WP_List_Table { } /** + * Displays the themes table. + * + * Overrides the parent display() method to provide a different container. + * + * @since 3.1.0 */ public function display() { wp_nonce_field( 'fetch-list-' . get_class( $this ), '_ajax_fetch_list_nonce' ); diff --git a/wp-includes/version.php b/wp-includes/version.php index 0dac47d8b9..d5a4fae779 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -13,7 +13,7 @@ * * @global string $wp_version */ -$wp_version = '5.3-beta1-46340'; +$wp_version = '5.3-beta1-46341'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.