Changeset 33829
- Timestamp:
- 08/31/2015 09:08:17 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r33828 r33829 653 653 654 654 if ( $this->user_can ) { 655 if ( ! empty( $comment->comment_author_email ) ) {656 $ GLOBALS['comment'] = $comment;657 comment_author_email_link();658 echo '<br />';659 unset( $GLOBALS['comment'] );655 if ( ! empty( $comment->comment_author_email ) ) { 656 $email = apply_filters( 'comment_email', $comment->comment_author_email, $comment ); 657 if ( ! empty( $email ) && '@' !== $email ) { 658 printf( '<a href=\'mailto:%1$s\'>%1$s</a><br />', $email ); 659 } 660 660 } 661 661
Note: See TracChangeset
for help on using the changeset viewer.