diff --git a/wp-includes/template-functions-post.php b/wp-includes/template-functions-post.php index b00a9873fb..8a4be9b1c4 100644 --- a/wp-includes/template-functions-post.php +++ b/wp-includes/template-functions-post.php @@ -353,7 +353,8 @@ function _page_level_out($parent, $page_tree, $args, $depth = 0) { $queried_obj = $wp_query->get_queried_object(); if($depth) - $indent = join('', array_fill(0,$depth,"\t")); + $indent = str_repeat("\t", $depth); + //$indent = join('', array_fill(0,$depth,"\t")); foreach($page_tree[$parent]['children'] as $page_id) { $cur_page = $page_tree[$page_id];