Menus: Remove an extra space in the <ul> tag in Walker_Nav_Menu::start_lvl().

Fixes #42289.
Built from https://develop.svn.wordpress.org/trunk@41955


git-svn-id: http://core.svn.wordpress.org/trunk@41789 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2017-10-20 10:40:46 +00:00
parent d31ab27d26
commit f80db51d0f
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ class Walker_Nav_Menu extends Walker {
$class_names = join( ' ', apply_filters( 'nav_menu_submenu_css_class', $classes, $args, $depth ) );
$class_names = $class_names ? ' class="' . esc_attr( $class_names ) . '"' : '';
$output .= "{$n}{$indent}<ul $class_names>{$n}";
$output .= "{$n}{$indent}<ul$class_names>{$n}";
}
/**

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.9-beta3-41954';
$wp_version = '4.9-beta3-41955';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.