From 53d42e6a9cdd7722954d5781fb79a2f195435cc7 Mon Sep 17 00:00:00 2001 From: Boone Gorges Date: Wed, 29 Apr 2015 12:57:35 +0000 Subject: [PATCH] Remove duplicate semicolon introduced in [32326]. git-svn-id: https://develop.svn.wordpress.org/trunk@32327 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/taxonomy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/taxonomy.php b/src/wp-includes/taxonomy.php index 619eb57f58..6760ffe8ed 100644 --- a/src/wp-includes/taxonomy.php +++ b/src/wp-includes/taxonomy.php @@ -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);