Changeset 12789 for trunk/wp-includes/comment-template.php
- Timestamp:
- 01/21/2010 09:37:43 PM (16 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/comment-template.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r12680 r12789 963 963 964 964 if ( post_password_required() ) { 965 echo __('Enter your password to view comments ');965 echo __('Enter your password to view comments.'); 966 966 return; 967 967 } … … 1283 1283 <?php endif; ?> 1284 1284 1285 <div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"><?php printf(__('%1$s at %2$s'), get_comment_date(), get_comment_time()) ?></a><?php edit_comment_link(__('(Edit)'),' ','') ?></div> 1285 <div class="comment-meta commentmetadata"><a href="<?php echo htmlspecialchars( get_comment_link( $comment->comment_ID ) ) ?>"> 1286 <?php 1287 /* translators: 1: date, 2: time */ 1288 printf( __('%1$s at %2$s'), get_comment_date(), get_comment_time()) ?></a><?php edit_comment_link(__('(Edit)'),' ','' ); 1289 ?> 1290 </div> 1286 1291 1287 1292 <?php comment_text() ?>
Note: See TracChangeset
for help on using the changeset viewer.