Don't use PHP short tag. Fixes #12337 props junsuijin

git-svn-id: https://develop.svn.wordpress.org/trunk@13312 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-02-22 21:26:48 +00:00
parent 670b8d8bfb
commit d17b86f3fc
1 changed files with 1 additions and 1 deletions

View File

@ -273,7 +273,7 @@ function wp_custom_navigation_output($args = array()) {
<?php while ( !empty( $parent_stack ) && ($last_item || $menu_items[ $key + 1 ]->post_parent != $current_parent ) ) { ?>
</ul>
</li>
<? $current_parent = array_pop( $parent_stack );
<?php $current_parent = array_pop( $parent_stack );
} ?>
<?php } else {
array_push( $parent_stack, $current_parent );