Changeset 35666
- Timestamp:
- 11/18/2015 05:33:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-comments-list-table.php
r35490 r35666 715 715 */ 716 716 public function column_date( $comment ) { 717 $comment_url = esc_url( get_comment_link( $comment ) );718 717 echo '<div class="submitted-on">'; 719 /* translators: 2: comment date, 3: comment time */ 720 printf( __( '<a href="%1$s">%2$s at %3$s</a>' ), $comment_url, 718 echo '<a href="' . esc_url( get_comment_link( $comment ) ) . '">'; 719 /* translators: 1: comment date, 2: comment time */ 720 printf( __( '%1$s at %2$s' ), 721 721 /* translators: comment date format. See http://php.net/date */ 722 722 get_comment_date( __( 'Y/m/d' ), $comment ), 723 723 get_comment_date( get_option( 'time_format' ), $comment ) 724 724 ); 725 echo '</a>'; 725 726 echo '</div>'; 726 727 }
Note: See TracChangeset
for help on using the changeset viewer.