Index: wp-admin/includes/class-wp-posts-list-table.php
===================================================================
--- wp-admin/includes/class-wp-posts-list-table.php	(revision 20636)
+++ wp-admin/includes/class-wp-posts-list-table.php	(working copy)
@@ -844,6 +844,11 @@
 			<label>
 				<span class="title"><?php _e( 'Parent' ); ?></span>
 	<?php
+		if ( current_user_can( $post_type_object->cap->read_private_posts ) )
+			$post_status = array( 'publish', 'private' );
+		else
+			$post_status = 'publish';
+
 		$dropdown_args = array(
 			'post_type'         => $post_type_object->name,
 			'selected'          => $post->post_parent,
@@ -851,6 +856,7 @@
 			'show_option_none'  => __( 'Main Page (no parent)' ),
 			'option_none_value' => 0,
 			'sort_column'       => 'menu_order, post_title',
+			'post_status'       => $post_status,
 		);
 
 		if ( $bulk )
Index: wp-admin/includes/meta-boxes.php
===================================================================
--- wp-admin/includes/meta-boxes.php	(revision 20636)
+++ wp-admin/includes/meta-boxes.php	(working copy)
@@ -554,6 +554,11 @@
 function page_attributes_meta_box($post) {
 	$post_type_object = get_post_type_object($post->post_type);
 	if ( $post_type_object->hierarchical ) {
+		if ( current_user_can( $post_type_object->cap->read_private_posts ) )
+			$post_status = array( 'publish', 'private' );
+		else
+			$post_status = 'publish';
+
 		$dropdown_args = array(
 			'post_type'        => $post->post_type,
 			'exclude_tree'     => $post->ID,
@@ -562,6 +567,7 @@
 			'show_option_none' => __('(no parent)'),
 			'sort_column'      => 'menu_order, post_title',
 			'echo'             => 0,
+			'post_status'      => $post_status,
 		);
 
 		$dropdown_args = apply_filters( 'page_attributes_dropdown_pages_args', $dropdown_args, $post );
Index: wp-includes/post-template.php
===================================================================
--- wp-includes/post-template.php	(revision 20636)
+++ wp-includes/post-template.php	(working copy)
@@ -771,7 +771,8 @@
 		'selected' => 0, 'echo' => 1,
 		'name' => 'page_id', 'id' => '',
 		'show_option_none' => '', 'show_option_no_change' => '',
-		'option_none_value' => ''
+		'option_none_value' => '',
+		'post_status' => 'publish',
 	);
 
 	$r = wp_parse_args( $args, $defaults );
@@ -1110,7 +1111,34 @@
 		if ( $page->ID == $args['selected'] )
 			$output .= ' selected="selected"';
 		$output .= '>';
-		$title = apply_filters( 'list_pages', $page->post_title, $page );
+
+		$title = $page->post_title;
+		$post_states = array();
+
+		if ( !empty( $page->post_password ) )
+			$post_states['protected'] = __( 'Password protected' );
+
+		if ( 'private' == $page->post_status )
+			$post_states['private'] = __( 'Private' );
+
+		if ( 'draft' == $page->post_status )
+			$post_states['draft'] = __( 'Draft' );
+
+		if ( 'pending' == $page->post_status )
+			// translators: post state
+			$post_states['pending'] = _x( 'Pending', 'post state' );
+
+		if ( is_sticky( $page->ID ) )
+			$post_states['sticky'] = __( 'Sticky' );
+
+		$post_states = apply_filters( 'display_post_states', $post_states );
+
+		if ( ! empty( $post_states ) ) {
+			$states = implode( ', ', $post_states );
+			$title  = $title . sprintf( ' (%s)', $states );
+		}
+
+		$title = apply_filters( 'list_pages', $title, $page );
 		$output .= $pad . esc_html( $title );
 		$output .= "</option>\n";
 	}
