Remove duplicate semicolon introduced in [32326].

Built from https://develop.svn.wordpress.org/trunk@32327


git-svn-id: http://core.svn.wordpress.org/trunk@32298 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Boone Gorges 2015-04-29 12:58:24 +00:00
parent a20841bc36
commit af6b4cba24
2 changed files with 2 additions and 2 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);

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.3-alpha-32326';
$wp_version = '4.3-alpha-32327';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.