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
This commit is contained in:
Drew Jaynes 2015-05-31 01:32:26 +00:00
parent 8bcf53cc68
commit 42afe1d373
2 changed files with 4 additions and 4 deletions

View File

@ -506,7 +506,7 @@ foreach ( $columns as $column_name => $column_display_name ) {
/** /**
* Fires for each custom column in the Media list table. * 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 * @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 * @since 4.3.0
* @access protected * @access protected
* *
* @return string * @return string Name of the default primary column, in this case, 'title'.
*/ */
protected function get_default_primary_column_name() { protected function get_default_primary_column_name() {
return 'title'; return 'title';

View File

@ -4,7 +4,7 @@
* *
* @global string $wp_version * @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. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.