Fix page walk bug. fixes #2516

git-svn-id: https://develop.svn.wordpress.org/trunk@3578 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2006-02-28 11:19:04 +00:00
parent f7ee176581
commit 9055457e82
1 changed files with 1 additions and 1 deletions

View File

@ -747,7 +747,7 @@ function walk_page_tree($pages, $to_depth, $start_element_callback, $end_element
$cb_args = array_merge( array($output, $depth), $args);
$output = call_user_func_array($start_level_callback, $cb_args);
}
} else if ( $depth && ($page->post_parent == $parents[0]->ID) ) {
} else if ( $depth && ($page->post_parent == $previous_page->post_parent) ) {
// On the same level as previous page.
if ( !$to_depth || ($depth < $to_depth) ) {
if ( !empty($end_element_callback) ) {