mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-16 07:35:39 +01:00
Pass args to mysql2date() in the correct order. Props filosofo, fabifott. fixes #10866
git-svn-id: http://svn.automattic.com/wordpress/trunk@11989 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3ab19e267d
commit
d89bf58bd3
@ -1182,7 +1182,7 @@ function get_media_item( $attachment_id, $args = null ) {
|
|||||||
<td>$filename</td>
|
<td>$filename</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr><td>$post->post_mime_type</td></tr>
|
<tr><td>$post->post_mime_type</td></tr>
|
||||||
<tr><td>" . mysql2date($post->post_date, get_option('time_format')) . "</td></tr>
|
<tr><td>" . mysql2date(get_option('time_format'), $post->post_date) . "</td></tr>
|
||||||
<tr><td>" . apply_filters('media_meta', $media_dims, $post) . "</td></tr>
|
<tr><td>" . apply_filters('media_meta', $media_dims, $post) . "</td></tr>
|
||||||
<tr><td class='A1B1'>$image_edit_button</td></tr>
|
<tr><td class='A1B1'>$image_edit_button</td></tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
Loading…
Reference in New Issue
Block a user