Changeset 31053
- Timestamp:
- 01/05/2015 07:09:36 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-comment.php
r30842 r31053 49 49 if ( ! empty( $comment->comment_author_url ) && 'http://' != $comment->comment_author_url ) { 50 50 $link = '<a href="' . $comment->comment_author_url . '" rel="external nofollow" target="_blank">' . __('visit site') . '</a>'; 51 $author = get_comment_author( $comment->comment_ID ); 51 52 /** This filter is documented in wp-includes/comment-template.php */ 52 printf( __( 'URL (%s):' ), apply_filters( 'get_comment_author_link', $link ) );53 printf( __( 'URL (%s):' ), apply_filters( 'get_comment_author_link', $link, $author, $comment->comment_ID ) ); 53 54 } else { 54 55 _e( 'URL:' );
Note: See TracChangeset
for help on using the changeset viewer.