From 1e10cd53ac43378a7748f4bf4fe23024743ee945 Mon Sep 17 00:00:00 2001 From: alex_t_king Date: Mon, 5 Jan 2004 03:03:35 +0000 Subject: [PATCH] making spacing of counts consistent betweek archives list and category list git-svn-id: http://svn.automattic.com/wordpress/trunk@717 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/template-functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/template-functions.php b/wp-includes/template-functions.php index ab862a017..d69115164 100644 --- a/wp-includes/template-functions.php +++ b/wp-includes/template-functions.php @@ -236,7 +236,7 @@ function get_archives($type='', $limit='', $format='html', $before = "", $after $url = get_month_link($arcresult->year, $arcresult->month); if ($show_post_count) { $text = sprintf("%s %d", $month[zeroise($arcresult->month,2)], $arcresult->year); - $after = " ($arcresult->posts)"; + $after = " ($arcresult->posts)"; } else { $text = sprintf("%s %d", $month[zeroise($arcresult->month,2)], $arcresult->year); } @@ -1527,10 +1527,10 @@ function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_orde $link = ''; $link .= stripslashes($cat_name).''; if (intval($optioncount) == 1) { - $link .= '  ('.$category->cat_count.')'; + $link .= ' ('.$category->cat_count.')'; } if (intval($optiondates) == 1) { - $link .= '  '.$category->lastday.'/'.$category->lastmonth; + $link .= ' '.$category->lastday.'/'.$category->lastmonth; } if ($list) { echo "\t
  • $link
  • \n";