Remove the hamburger global'ing from [33828]: since no args are passed to comment_author_email_link()
, the internals can be simplified and applied inline.
See #11566. git-svn-id: https://develop.svn.wordpress.org/trunk@33829 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
fef8794b2c
commit
e10c682b83
@ -652,11 +652,11 @@ class WP_Comments_List_Table extends WP_List_Table {
|
||||
}
|
||||
|
||||
if ( $this->user_can ) {
|
||||
if ( !empty( $comment->comment_author_email ) ) {
|
||||
$GLOBALS['comment'] = $comment;
|
||||
comment_author_email_link();
|
||||
echo '<br />';
|
||||
unset( $GLOBALS['comment'] );
|
||||
if ( ! empty( $comment->comment_author_email ) ) {
|
||||
$email = apply_filters( 'comment_email', $comment->comment_author_email, $comment );
|
||||
if ( ! empty( $email ) && '@' !== $email ) {
|
||||
printf( '<a href=\'mailto:%1$s\'>%1$s</a><br />', $email );
|
||||
}
|
||||
}
|
||||
|
||||
$author_ip = get_comment_author_IP( $comment->comment_ID );
|
||||
|
Loading…
Reference in New Issue
Block a user