Changeset 34042 for trunk/src/wp-includes/class-walker-comment.php
- Timestamp:
- 09/11/2015 06:20:56 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-walker-comment.php
r34041 r34042 230 230 <<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( '', $comment ); ?>> 231 231 <div class="comment-body"> 232 <?php _e( 'Pingback:' ); ?> <?php comment_author_link( ); ?> <?php edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' ); ?>232 <?php _e( 'Pingback:' ); ?> <?php comment_author_link( $comment ); ?> <?php edit_comment_link( __( 'Edit' ), '<span class="edit-link">', '</span>' ); ?> 233 233 </div> 234 234 <?php … … 269 269 <?php endif; ?> 270 270 271 <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment ->comment_ID, $args ) ); ?>">271 <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment, $args ) ); ?>"> 272 272 <?php 273 273 /* translators: 1: comment date, 2: comment time */ … … 318 318 319 319 <div class="comment-metadata"> 320 <a href="<?php echo esc_url( get_comment_link( $comment ->comment_ID, $args ) ); ?>">320 <a href="<?php echo esc_url( get_comment_link( $comment, $args ) ); ?>"> 321 321 <time datetime="<?php comment_time( 'c' ); ?>"> 322 322 <?php
Note: See TracChangeset
for help on using the changeset viewer.