From 244ad8dd1741ff740f23cc38717ecf2fb83725a3 Mon Sep 17 00:00:00 2001 From: scribu Date: Sun, 12 Dec 2010 20:32:29 +0000 Subject: [PATCH] Re-index categories in get_the_category(). Props greuben. Fixes #15442 git-svn-id: http://svn.automattic.com/wordpress/trunk@16888 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/category-template.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wp-includes/category-template.php b/wp-includes/category-template.php index 9aae78eecb..8b001c5fbc 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -67,11 +67,14 @@ function get_the_category( $id = false ) { $categories = get_the_terms( $id, 'category' ); if ( ! $categories ) $categories = array(); + + $categories = array_values( $categories ); foreach ( array_keys( $categories ) as $key ) { _make_cat_compat( $categories[$key] ); } - // Filter name is plural because we are return alot of categories not just one + + // Filter name is plural because we return alot of categories not just one return apply_filters( 'get_the_categories', $categories ); }