Changeset 40809 for trunk/src/wp-includes/media.php
- Timestamp:
- 05/20/2017 02:23:00 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r40650 r40809 3099 3099 3100 3100 $author = new WP_User( $attachment->post_author ); 3101 $response['authorName'] = $author->display_name; 3101 if ( $author->exists() ) { 3102 $response['authorName'] = html_entity_decode( $author->display_name, ENT_QUOTES, get_bloginfo( 'charset' ) ); 3103 } else { 3104 $response['authorName'] = __( '(no author)' ); 3105 } 3102 3106 3103 3107 if ( $attachment->post_parent ) {
Note: See TracChangeset
for help on using the changeset viewer.