﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
8609,Tag cloud order priority is broken,brh,anonymous,"If you specify the order parameter (ASC or DESC) for wp_tag_cloud, you get the opposite ordering you asked for.

On line 654 of category-template.php, there's some code that looks like this:

	if ( 'DESC' == $order )
		$tags = array_reverse( $tags, true );

But up at line 560, the query that gets the tags always uses DESC. So reversing it gets an ascending order. Line 654 should be changed to ""if ( 'ASC' == $order )"". Beyond that, having ASC as a default for ordering something on frequency is kind of odd, don't you think?",defect (bug),closed,normal,2.7.1,General,2.7,normal,fixed,has-patch,
