Media List Table: Remove the date display in `column_parent()`.

It should be the time at which the post was written, but it was never because of the missing `$parent` argument.

Fixes #33238.
Built from https://develop.svn.wordpress.org/trunk@34839


git-svn-id: http://core.svn.wordpress.org/trunk@34804 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Dominik Schilling 2015-10-05 22:25:26 +00:00
parent 0b93819465
commit fcc36d1adf
2 changed files with 3 additions and 3 deletions

View File

@ -470,8 +470,8 @@ class WP_Media_List_Table extends WP_List_Table {
<?php echo $title ?></a><?php
} else {
echo $title;
} ?></strong>,
<?php echo get_the_time( __( 'Y/m/d' ) ); ?><br />
} ?></strong>
<br />
<?php
if ( $user_can_edit ):
$detach_url = add_query_arg( array(

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.4-alpha-34838';
$wp_version = '4.4-alpha-34839';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.