mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-10 17:41:56 +01:00
Fix comment number in Twenty Ten when there is one comment. Due to how these values are then passed to comments_popup_link(). We need to fix this. see #13651.
git-svn-id: http://svn.automattic.com/wordpress/trunk@16726 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
9cb7a9b837
commit
0e29723f63
@ -55,7 +55,7 @@
|
||||
*/ ?>
|
||||
<?php while ( have_posts() ) : the_post();
|
||||
|
||||
$comment_number_template = _n( '% Comment', '% Comments', get_comments_number(), 'twentyten' );
|
||||
$comment_number_template = _n( '1 Comment', '% Comments', get_comments_number(), 'twentyten' );
|
||||
?>
|
||||
|
||||
<?php /* How to display posts in the Gallery category. */ ?>
|
||||
|
Loading…
Reference in New Issue
Block a user