From 42afe1d373d0af247ba8b2d823fc50127952a7b2 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Sun, 31 May 2015 01:32:26 +0000 Subject: [PATCH] Fix formatting and add a missing return description for inline documentation introduced in [32644] for `WP_Media_List_Table`. See #25408. See #32246. Built from https://develop.svn.wordpress.org/trunk@32663 git-svn-id: http://core.svn.wordpress.org/trunk@32633 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-media-list-table.php | 6 +++--- wp-includes/version.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/wp-admin/includes/class-wp-media-list-table.php b/wp-admin/includes/class-wp-media-list-table.php index 41fb52a131..2f3c1392e4 100644 --- a/wp-admin/includes/class-wp-media-list-table.php +++ b/wp-admin/includes/class-wp-media-list-table.php @@ -506,7 +506,7 @@ foreach ( $columns as $column_name => $column_display_name ) { /** * Fires for each custom column in the Media list table. * - * Custom columns are registered using the 'manage_media_columns' filter. + * Custom columns are registered using the {@see 'manage_media_columns'} filter. * * @since 2.5.0 * @@ -530,12 +530,12 @@ foreach ( $columns as $column_name => $column_display_name ) { } /** - * Get name of default primary column + * Get the name of the default primary column. * * @since 4.3.0 * @access protected * - * @return string + * @return string Name of the default primary column, in this case, 'title'. */ protected function get_default_primary_column_name() { return 'title'; diff --git a/wp-includes/version.php b/wp-includes/version.php index 05bc035b78..31abfbbde8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32662'; +$wp_version = '4.3-alpha-32663'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.