Make WordPress Core

Ticket #5155: 5155.diff

File 5155.diff, 485 bytes (added by Otto42, 17 years ago)
  • wp-includes/category-template.php

     
    321321                return;
    322322
    323323        $return = wp_generate_tag_cloud( $tags, $args ); // Here's where those top tags get sorted according to $args
     324       
     325        if ( $args['format'] == 'array')
     326                return $return;
     327               
    324328        if ( is_wp_error( $return ) )
    325329                return false;
    326330        else