#4621 closed defect (bug) (fixed)
Error in wp_generate_tag_cloud when using DESC order
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 2.3 |
| Component: | General | Version: | |
| Severity: | normal | Keywords: | |
| 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 (2)
Note: See
TracTickets for help on using
tickets.

(In [5797]) Fix variable name. Props bgracewood. fixes #4621