Make WordPress Core

Changeset 33830


Ignore:
Timestamp:
08/31/2015 09:21:14 PM (10 years ago)
Author:
DrewAPicture
Message:

Docs: Add a duplicate filter comment to the comment_email filter call in WP_Comments_List_Table, introduced in [33829].

See #11566.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-comments-list-table.php

    r33829 r33830  
    654654        if ( $this->user_can ) {
    655655            if ( ! empty( $comment->comment_author_email ) ) {
     656                /* This filter is documented in wp-includes/comment-template.php */
    656657                $email = apply_filters( 'comment_email', $comment->comment_author_email, $comment );
     658
    657659                if ( ! empty( $email ) && '@' !== $email ) {
    658660                    printf( '<a href=\'mailto:%1$s\'>%1$s</a><br />', $email );
Note: See TracChangeset for help on using the changeset viewer.