diff --git a/src/wp-admin/edit-form-comment.php b/src/wp-admin/edit-form-comment.php index 07c1946e1b..6537169d0e 100644 --- a/src/wp-admin/edit-form-comment.php +++ b/src/wp-admin/edit-form-comment.php @@ -49,7 +49,8 @@ if ( !defined('ABSPATH') ) comment_author_url ) && 'http://' != $comment->comment_author_url ) { $link = '' . __('visit site') . ''; - printf( __( 'URL (%s):' ), apply_filters('get_comment_author_link', $link ) ); + /** This filter is documented in wp-includes/comment-template.php */ + printf( __( 'URL (%s):' ), apply_filters( 'get_comment_author_link', $link ) ); } else { _e( 'URL:' ); } ?> @@ -127,9 +128,17 @@ $date = date_i18n( $datef, strtotime( $comment->comment_date ) );