From 41aedd5e68a1cec527f294d7f502f7afb15cf42b Mon Sep 17 00:00:00 2001 From: Mike Little Date: Thu, 24 Jul 2003 00:59:07 +0000 Subject: [PATCH] Removed extra closing anchor tag. double quotes -> single. http://wordpress.org/support/6/366 git-svn-id: https://develop.svn.wordpress.org/trunk@272 602fd350-edb4-49c9-b593-d223f7449a82 --- b2-include/b2template.functions.php | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/b2-include/b2template.functions.php b/b2-include/b2template.functions.php index 3c0f4214e4..c65bfdc866 100644 --- a/b2-include/b2template.functions.php +++ b/b2-include/b2template.functions.php @@ -891,17 +891,16 @@ function list_cats($optionall = 1, $all = 'All', $sort_column = 'ID', $sort_orde } foreach ($categories as $category) { $cat_name = apply_filters('list_cats', $category->cat_name); - $link = "cat_ID.'">'; - $link .= stripslashes($cat_name).""; + $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; } - $link .= ""; if ($list) { - echo "\n\t
  • $link
  • "; + echo "\t
  • $link
  • \n"; } else { echo "\t$link
    \n"; }