Disable nesting until inifinite loop tracked down.

git-svn-id: https://develop.svn.wordpress.org/trunk@5608 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2007-05-31 03:09:58 +00:00
parent c183e02277
commit d5e0bed711
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ function get_nested_categories( $default = 0, $parent = 0 ) {
if ( is_array( $cats ) ) {
foreach ( $cats as $cat) {
// TODO fix hierarchy
$result[$cat]['children'] = get_nested_categories( $default, $cat);
//$result[$cat]['children'] = get_nested_categories( $default, $cat);
$result[$cat]['cat_ID'] = $cat;
$result[$cat]['checked'] = in_array( $cat, $checked_categories );
$result[$cat]['cat_name'] = get_the_category_by_ID( $cat);