From d9b37f77c8fad615b660abfaa7bbbba1c49ac587 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 29 Sep 2011 17:20:34 +0000 Subject: [PATCH] Make the sort-by-object-property functions generic. see #14424. git-svn-id: https://develop.svn.wordpress.org/trunk@18815 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 df2621dab7..d1a4ca0daa 100644 --- a/wp-includes/category-template.php +++ b/wp-includes/category-template.php @@ -642,9 +642,9 @@ function wp_generate_tag_cloud( $tags, $args = '' ) { } else { // SQL cannot save you; this is a second (potentially different) sort on a subset of data. if ( 'name' == $orderby ) - uasort( $tags, '_wp_tag_cloud_name_sort_cb' ); + uasort( $tags, '_wp_object_name_sort_cb' ); else - uasort( $tags, '_wp_tag_cloud_count_sort_cb' ); + uasort( $tags, '_wp_object_count_sort_cb' ); if ( 'DESC' == $order ) $tags = array_reverse( $tags, true ); @@ -704,22 +704,22 @@ function wp_generate_tag_cloud( $tags, $args = '' ) { } /** - * Callback for comparing tags based on name + * Callback for comparing objects based on name * * @since 3.1.0 * @access private */ -function _wp_tag_cloud_name_sort_cb( $a, $b ) { +function _wp_object_name_sort_cb( $a, $b ) { return strnatcasecmp( $a->name, $b->name ); } /** - * Callback for comparing tags based on count + * Callback for comparing objects based on count * * @since 3.1.0 * @access private */ -function _wp_tag_cloud_count_sort_cb( $a, $b ) { +function _wp_object_count_sort_cb( $a, $b ) { return ( $a->count > $b->count ); }