Index: wp-includes/admin-bar.php
===================================================================
--- wp-includes/admin-bar.php	(revision 16268)
+++ wp-includes/admin-bar.php	(working copy)
@@ -187,26 +187,10 @@
 	}
 }
 
-function wp_admin_bar_new_content_menu() {
+function wp_admin_bar_new_post_menu() {
 	global $wp_admin_bar;
 
-	$actions = array();
-	foreach ( (array) get_post_types( array('show_ui' => true, 'show_in_menu' => true) ) as $ptype ) {
-		$ptype_obj = get_post_type_object( $ptype );
-		if ( $ptype_obj->show_in_menu !== true || ! current_user_can( $ptype_obj->cap->edit_posts ) )
-			continue;
-			
-		$actions["post-new.php?post_type=$ptype"] = array( $ptype_obj->labels->singular_name, $ptype_obj->cap->edit_posts, "new-$ptype" );
-	}
-
-	if ( empty( $actions ) )
-		return;
-
-	$wp_admin_bar->add_menu( array( 'id' => 'new-content', 'title' => __( 'New Content' ), 'href' => '', ) );
-
-	foreach ( $actions as $link => $action ) {
-		$wp_admin_bar->add_menu( array( 'parent' => 'new-content', 'id' => $action[2], 'title' => $action[0], 'href' => admin_url($link) ) );
-	}
+	$wp_admin_bar->add_menu( array( 'id' => 'post-new', 'title' => __( 'New Post' ), 'href' => admin_url('post-new.php') ) );
 }
 
 function wp_admin_bar_comments_menu() {
Index: wp-includes/class-wp-admin-bar.php
===================================================================
--- wp-includes/class-wp-admin-bar.php	(revision 16268)
+++ wp-includes/class-wp-admin-bar.php	(working copy)
@@ -175,7 +175,7 @@
 		add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_my_account_menu', 20 );
 		add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_my_blogs_menu', 30 );
 		add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_edit_menu', 40 );
-		add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_new_content_menu', 50 );
+		add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_new_post_menu', 50 );
 		add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_comments_menu', 60 );
 		add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_appearance_menu', 70 );
 		add_action( 'wp_before_admin_bar_render', 'wp_admin_bar_updates_menu', 80 );
