Reverting [7729]. Breaks listing of categories with posts that have parents with no posts.
git-svn-id: http://svn.automattic.com/wordpress/trunk@7792 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
8709169ef9
commit
eaf44137c6
|
@ -232,9 +232,7 @@ function wp_dropdown_categories($args = '') {
|
|||
if ( (int) $tab_index > 0 )
|
||||
$tab_index_attribute = " tabindex=\"$tab_index\"";
|
||||
|
||||
$r['hierarchical'] = 0;
|
||||
$categories = get_categories($r);
|
||||
$r['hierarchical'] = $hierarchical;
|
||||
|
||||
$output = '';
|
||||
if ( ! empty($categories) ) {
|
||||
|
@ -291,9 +289,7 @@ function wp_list_categories($args = '') {
|
|||
|
||||
extract( $r );
|
||||
|
||||
$r['hierarchical'] = 0;
|
||||
$categories = get_categories($r);
|
||||
$r['hierarchical'] = $hierarchical;
|
||||
|
||||
$output = '';
|
||||
if ( $title_li && 'list' == $style )
|
||||
|
|
Loading…
Reference in New Issue