Remove duplicate semicolon introduced in [32326].

git-svn-id: https://develop.svn.wordpress.org/trunk@32327 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Boone Gorges 2015-04-29 12:57:35 +00:00
parent 1700d2b265
commit 53d42e6a9c
1 changed files with 1 additions and 1 deletions

View File

@ -3968,7 +3968,7 @@ function _get_term_children( $term_id, $terms, $taxonomy, &$ancestors = array()
if ( !isset($has_children[$term->term_id]) )
continue;
$ancestors[ $term->term_id ] = 1;;
$ancestors[ $term->term_id ] = 1;
if ( $children = _get_term_children( $term->term_id, $terms, $taxonomy, $ancestors) )
$term_list = array_merge($term_list, $children);