Skip to content

Commit

Permalink
Fix tag list separator i18n in content-single.php
Browse files Browse the repository at this point in the history
  • Loading branch information
naokomc committed Nov 13, 2012
1 parent eb7fad1 commit 3922261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content-single.php 100644 → 100755
Expand Up @@ -25,7 +25,7 @@
$category_list = get_the_category_list( __( ', ', '_s' ) );

/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( '', ', ' );
$tag_list = get_the_tag_list( '', __( ', ', '_s' ) );

if ( ! _s_categorized_blog() ) {
// This blog only has 1 category so we just need to worry about tags in the meta text
Expand Down

0 comments on commit 3922261

Please sign in to comment.