diff -r 490d5cc509ed -r cf61fcea0001 wp/wp-admin/async-upload.php
--- a/wp/wp-admin/async-upload.php Tue Jun 09 11:14:17 2015 +0000
+++ b/wp/wp-admin/async-upload.php Mon Oct 14 17:39:30 2019 +0200
@@ -1,6 +1,6 @@
post_type )
- wp_die( __( 'Unknown post type.' ) );
+ wp_die( __( 'Invalid post type.' ) );
if ( ! current_user_can( 'edit_post', $id ) )
- wp_die( __( 'You are not allowed to edit this item.' ) );
+ wp_die( __( 'Sorry, you are not allowed to edit this item.' ) );
switch ( $_REQUEST['fetch'] ) {
case 3 :
if ( $thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true ) )
echo '';
echo '' . _x( 'Edit', 'media item' ) . '';
- $title = $post->post_title ? $post->post_title : wp_basename( $post->guid ); // title shouldn't ever be empty, but use filename just in cas.e
+
+ // Title shouldn't ever be empty, but use filename just in case.
+ $file = get_attached_file( $post->ID );
+ $title = $post->post_title ? $post->post_title : wp_basename( $file );
echo '