Changeset 34039 for trunk/src/wp-admin/comment.php
- Timestamp:
- 09/11/2015 06:04:22 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/comment.php
r34019 r34039 181 181 if ( $comment->comment_parent ) { 182 182 $parent = get_comment( $comment->comment_parent ); 183 $parent_link = esc_url( get_comment_link( $ comment->comment_parent ) );184 $name = get_comment_author( $parent ->comment_ID);183 $parent_link = esc_url( get_comment_link( $parent ) ); 184 $name = get_comment_author( $parent ); 185 185 printf( ' | ' . __( 'In reply to <a href="%1$s">%2$s</a>.' ), $parent_link, $name ); 186 186 }
Note: See TracChangeset
for help on using the changeset viewer.