Changeset 10774 for trunk/wp-includes/widgets.php
- Timestamp:
- 03/13/2009 03:53:39 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/widgets.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/widgets.php
r10764 r10774 1447 1447 <ul id="recentcomments"><?php 1448 1448 if ( $comments ) : foreach ( (array) $comments as $comment) : 1449 echo '<li class="recentcomments">' . sprintf(__('%1$s on %2$s'), get_comment_author_link(), '<a href="' . clean_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '</li>';1449 echo '<li class="recentcomments">' . /* translators: comments widget: 1: comment author, 2: post link */ sprintf(_x('%1$s on %2$s', 'widgets'), get_comment_author_link(), '<a href="' . clean_url( get_comment_link($comment->comment_ID) ) . '">' . get_the_title($comment->comment_post_ID) . '</a>') . '</li>'; 1450 1450 endforeach; endif;?></ul> 1451 1451 <?php echo $after_widget; ?>
Note: See TracChangeset
for help on using the changeset viewer.