mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-26 02:57:45 +01:00
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:
parent
2ce7dc4dac
commit
38421f8b70
@ -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 ) ) { ?>
|
<?php while ( !empty( $parent_stack ) && ($last_item || $menu_items[ $key + 1 ]->post_parent != $current_parent ) ) { ?>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
<? $current_parent = array_pop( $parent_stack );
|
<?php $current_parent = array_pop( $parent_stack );
|
||||||
} ?>
|
} ?>
|
||||||
<?php } else {
|
<?php } else {
|
||||||
array_push( $parent_stack, $current_parent );
|
array_push( $parent_stack, $current_parent );
|
||||||
|
Loading…
Reference in New Issue
Block a user