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

git-svn-id: http://svn.automattic.com/wordpress/trunk@13312 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-02-22 21:26:48 +00:00
parent 2ce7dc4dac
commit 38421f8b70

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 );