From 0d4bfdbf8c17706b57e92838d1599cb9e82c893b Mon Sep 17 00:00:00 2001 From: donncha Date: Mon, 12 Mar 2007 23:03:30 +0000 Subject: WP Merge to 5028 git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@915 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-includes/classes.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'wp-includes/classes.php') diff --git a/wp-includes/classes.php b/wp-includes/classes.php index 8c8dcd0..5bdeebe 100644 --- a/wp-includes/classes.php +++ b/wp-includes/classes.php @@ -580,13 +580,14 @@ class Walker_Category extends Walker { extract($args); $cat_name = attribute_escape( $category->cat_name); + $cat_name = apply_filters( 'list_cats', $cat_name, $category ); $link = 'category_description) ) $link .= 'title="' . sprintf(__( 'View all posts filed under %s' ), $cat_name) . '"'; else $link .= 'title="' . attribute_escape( apply_filters( 'category_description', $category->category_description, $category )) . '"'; $link .= '>'; - $link .= apply_filters( 'list_cats', $category->cat_name, $category ).''; + $link .= $cat_name . ''; if ( (! empty($feed_image)) || (! empty($feed)) ) { $link .= ' '; -- cgit