diff --git a/wp-admin/menu.php b/wp-admin/menu.php index eaf997ac3c..d04fd3c12f 100644 --- a/wp-admin/menu.php +++ b/wp-admin/menu.php @@ -86,6 +86,7 @@ foreach ( array_merge( $builtin, $types ) as $ptype ) { $ptype_menu_position = is_int( $ptype_obj->menu_position ) ? $ptype_obj->menu_position : ++$_wp_last_object_menu; // If we're to use $_wp_last_object_menu, increment it first. $ptype_for_id = sanitize_html_class( $ptype ); + $menu_icon = 'dashicons-admin-post'; if ( is_string( $ptype_obj->menu_icon ) ) { // Special handling for data:image/svg+xml and Dashicons. if ( 0 === strpos( $ptype_obj->menu_icon, 'data:image/svg+xml;base64,' ) || 0 === strpos( $ptype_obj->menu_icon, 'dashicons-' ) ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index cf0d81114c..39aae16024 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-beta3-35589'; +$wp_version = '4.4-beta3-35590'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.