Changeset 33919
- Timestamp:
- 09/05/2015 08:45:13 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r33891 r33919 1935 1935 <div class="comment-meta commentmetadata"><a href="<?php echo esc_url( get_comment_link( $comment->comment_ID, $args ) ); ?>"> 1936 1936 <?php 1937 /* translators: 1: date, 2:time */1937 /* translators: 1: comment date, 2: comment time */ 1938 1938 printf( __( '%1$s at %2$s' ), get_comment_date(), get_comment_time() ); ?></a><?php edit_comment_link( __( '(Edit)' ), ' ', '' ); 1939 1939 ?> … … 1984 1984 <a href="<?php echo esc_url( get_comment_link( $comment->comment_ID, $args ) ); ?>"> 1985 1985 <time datetime="<?php comment_time( 'c' ); ?>"> 1986 <?php printf( _x( '%1$s at %2$s', '1: date, 2: time' ), get_comment_date(), get_comment_time() ); ?> 1986 <?php 1987 /* translators: 1: comment date, 2: comment time */ 1988 printf( __( '%1$s at %2$s' ), get_comment_date(), get_comment_time() ); 1989 ?> 1987 1990 </time> 1988 1991 </a>
Note: See TracChangeset
for help on using the changeset viewer.