- Timestamp:
- 01/18/2021 12:53:30 PM (4 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/media.php
r49927 r49979 3289 3289 $att_url = wp_get_attachment_url( $attachment_id ); 3290 3290 3291 $author = get_userdata( $post->post_author );3291 $author = new WP_User( $post->post_author ); 3292 3292 3293 3293 $uploaded_by_name = __( '(no author)' ); 3294 3294 $uploaded_by_link = ''; 3295 3295 3296 if ( $author->exists() ) { 3296 3297 $uploaded_by_name = $author->display_name ? $author->display_name : $author->nickname; -
trunk/src/wp-includes/media.php
r49936 r49979 3930 3930 3931 3931 $author = new WP_User( $attachment->post_author ); 3932 3932 3933 if ( $author->exists() ) { 3933 3934 $author_name = $author->display_name ? $author->display_name : $author->nickname;
Note: See TracChangeset
for help on using the changeset viewer.