﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
4596	use_desc_for_title doesnt work in wp_list_categories()	tiosolid	anonymous	"When you make a call to wp_list_categories(), the use_desc_for_title is set to TRUE by default, but even if the category has a description, the default text (View all posts filed under..) is shown. Even if you force the use_desc_for_title to TRUE in the wp_list_categories() call, it still doesnt work.

I managed to ""fix"" this bug changing the line 586 in the classes.php file from:
{{{
if ( $use_desc_for_title == 0 || empty($category->category_description) )
}}}

to

{{{
if ( empty($category->category_description) )
}}}

but, this break the use_desc_for_title variable usage."	defect (bug)	closed	normal		General	2.2.1	normal	worksforme	wp_list_categories categories lists reporter-feedback	
