From a6a04bb76faac6e9424f9b99ce467c29827f1853 Mon Sep 17 00:00:00 2001 From: Mark Jaquith Date: Wed, 24 Jan 2007 05:44:24 +0000 Subject: [PATCH] Typo in [4790] caught by Znuff. fixes #3644 git-svn-id: https://develop.svn.wordpress.org/trunk@4795 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/category-template.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 039a125e17..94b66e2463 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -101,17 +101,17 @@ function get_the_category_list($separator = '', $parents='') { case 'multiple': if ($category->category_parent) $thelist .= get_category_parents($category->category_parent, TRUE); - $thelist .= 'cat_name) . '" ' . $rel . '">' . $category->cat_name.''; + $thelist .= 'cat_name) . '" ' . $rel . '>' . $category->cat_name.''; break; case 'single': - $thelist .= 'cat_name) . '" ' . $rel . '">'; + $thelist .= 'cat_name) . '" ' . $rel . '>'; if ($category->category_parent) $thelist .= get_category_parents($category->category_parent, FALSE); $thelist .= $category->cat_name.''; break; case '': default: - $thelist .= 'cat_name) . '" ' . $rel . '">' . $category->cat_name.''; + $thelist .= 'cat_name) . '" ' . $rel . '>' . $category->cat_name.''; } } $thelist .= ''; @@ -124,17 +124,17 @@ function get_the_category_list($separator = '', $parents='') { case 'multiple': if ( $category->category_parent ) $thelist .= get_category_parents($category->category_parent, TRUE); - $thelist .= 'cat_name) . '" ' . $rel . '">' . $category->cat_name.''; + $thelist .= 'cat_name) . '" ' . $rel . '>' . $category->cat_name.''; break; case 'single': - $thelist .= 'cat_name) . '" ' . $rel . '">'; + $thelist .= 'cat_name) . '" ' . $rel . '>'; if ( $category->category_parent ) $thelist .= get_category_parents($category->category_parent, FALSE); $thelist .= "$category->cat_name"; break; case '': default: - $thelist .= 'cat_name) . '" ' . $rel . '">' . $category->cat_name.''; + $thelist .= 'cat_name) . '" ' . $rel . '>' . $category->cat_name.''; } ++$i; }