Fix parens in walker. Props hailin.

git-svn-id: https://develop.svn.wordpress.org/trunk@7454 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2008-03-21 18:11:47 +00:00
parent e0dcd9e128
commit 004b469e34
1 changed files with 2 additions and 1 deletions

View File

@ -503,10 +503,11 @@ class Walker {
for ( $i = 0; $i < sizeof( $children_elements ); $i++ ) {
$child = $children_elements[$i];
if ($root->$parent_field == $child->$parent_field )
if ($root->$parent_field == $child->$parent_field ) {
$top_level_elements[] = $child;
array_splice( $children_elements, $i, 1 );
$i--;
}
}
}