From e27f57e1b6b7b5a3415335fb49e6a282493bd222 Mon Sep 17 00:00:00 2001 From: nbachiyski Date: Mon, 10 May 2010 21:24:32 +0000 Subject: [PATCH] Do not cut the Tagged phrase in half. Fixes #13198 git-svn-id: http://svn.automattic.com/wordpress/trunk@14552 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/themes/twentyten/functions.php | 2 +- wp-content/themes/twentyten/loop.php | 10 +++++++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentyten/functions.php b/wp-content/themes/twentyten/functions.php index f77ad14f8..06b44d0ea 100644 --- a/wp-content/themes/twentyten/functions.php +++ b/wp-content/themes/twentyten/functions.php @@ -437,7 +437,7 @@ function twentyten_posted_on() { */ function twentyten_posted_in() { - $tag_list = get_the_tag_list(); + $tag_list = get_the_tag_list( '', ', ', '' ); if ( $tag_list ) { $utility_text = __( 'This entry was posted in %1$s and tagged %2$s. Bookmark the permalink.', 'twentyten' ); } else { diff --git a/wp-content/themes/twentyten/loop.php b/wp-content/themes/twentyten/loop.php index 3c8b1cf62..b47a8fb6c 100644 --- a/wp-content/themes/twentyten/loop.php +++ b/wp-content/themes/twentyten/loop.php @@ -119,7 +119,15 @@ ?> | - ' . __( 'Tagged ', 'twentyten' ) . '', ', ', '|' ); ?> + + + ' . $tags_list ); ?> + + | + | ', '' ); ?>