diff --git a/wp-includes/category.php b/wp-includes/category.php index 7584b21537..724ffa04d6 100644 --- a/wp-includes/category.php +++ b/wp-includes/category.php @@ -185,7 +185,7 @@ function get_cat_ID( $cat_name='General' ) { */ function get_cat_name( $cat_id ) { $cat_id = (int) $cat_id; - $category = &get_category( $cat_id ); + $category = get_category( $cat_id ); if ( ! $category || is_wp_error( $category ) ) return ''; return $category->name;