#4621 closed defect (bug) (fixed)
Error in wp_generate_tag_cloud when using DESC order
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 2.3 | Priority: | normal |
Severity: | normal | Version: | |
Component: | General | Keywords: | |
Focuses: | Cc: |
Description
In wp_generate_tag_cloud within category_template.php we have:
if ( 'DESC' == $order )
$counts = array_reverse( $tag_counts, true );
$tag_counts is incorrect. This should read
if ( 'DESC' == $order )
$counts = array_reverse( $counts, true );
Change History (3)
Note: See
TracTickets for help on using
tickets.
(In [5797]) Fix variable name. Props bgracewood. fixes #4621