520a521,615
> 			),
> 			'blog_public' => array(
> 				'desc'          => __( 'Search engine privacy' ),
> 				'readonly'      => false,
> 				'option'        => 'blog_public'
> 			),
> 			'default_category' => array(
> 				'desc'          => __( 'Default post category, new posts are added to this category' ),
> 				'readonly'      => false,
> 				'option'        => 'default_category'
> 			),
> 			'default_post_format' => array(
> 				'desc'          => __( 'Default post format, new posts are of this format' ),
> 				'readonly'      => false,
> 				'option'        => 'default_post_format'
> 			),
> 			'default_comment_status' => array(
> 				'desc'          => __( 'Whether or not comments are allowed' ),
> 				'readonly'      => false,
> 				'option'        => 'default_comment_status'
> 			),
> 			'default_pingback_flag' => array(
> 				'desc'          => __( 'Whether or not to notify blogs linked from a post' ),
> 				'readonly'      => false,
> 				'option'        => 'default_pingback_flag'
> 			),
> 			'default_ping_status' => array(
> 				'desc'          => __( 'Allows other sites to notify this site when they link to it' ),
> 				'readonly'      => false,
> 				'option'        => 'default_ping_status'
> 			),
> 			'close_comments_for_old_posts' => array(
> 				'desc'          => __( 'Disables comments on a post after a specified time period' ),
> 				'readonly'      => false,
> 				'option'        => 'close_comments_for_old_posts'
> 			),
> 			'close_comments_days_old' => array(
> 				'desc'          => __( 'The time period till post comments are disabled if close_comments_for_old_posts is set' ),
> 				'readonly'      => false,
> 				'option'        => 'close_comments_days_old'
> 			),
> 			'thread_comments' => array(
> 				'desc'          => __( 'Allow nested comments' ),
> 				'readonly'      => false,
> 				'option'        => 'thread_comments'
> 			),
> 			'thread_comments_depth' => array(
> 				'desc'          => __( 'Maximum number of reply threads per comment' ),
> 				'readonly'      => false,
> 				'option'        => 'thread_comments_depth'
> 			),
> 			'page_comments' => array(
> 				'desc'          => __( 'Organize comments by pages' ),
> 				'readonly'      => false,
> 				'option'        => 'page_comments'
> 			),
> 			'comments_per_page' => array(
> 				'desc'          => __( 'Number of comments on each page if page_comments is set' ),
> 				'readonly'      => false,
> 				'option'        => 'comments_per_page'
> 			),
> 			'comment_moderation' => array(
> 				'desc'          => __( 'Send comments to a queue for approval before they are made visible' ),
> 				'readonly'      => false,
> 				'option'        => 'comment_moderation'
> 			),
> 			'require_name_email' => array(
> 				'desc'          => __( 'Users must provide a name and email address to comment on posts' ),
> 				'readonly'      => false,
> 				'option'        => 'require_name_email'
> 			),
> 			'comment_registration' => array(
> 				'desc'          => __( 'Comments can only be made from registered users' ),
> 				'readonly'      => false,
> 				'option'        => 'comment_registration'
> 			),
> 			'comment_whitelist' => array(
> 				'desc'          => __( 'Automatically approve comments from known users' ),
> 				'readonly'      => false,
> 				'option'        => 'comment_whitelist'
> 			),
> 			'comment_max_links' => array(
> 				'desc'          => __( 'Maximum number of links allowed in a comment before being sent to the moderation queue' ),
> 				'readonly'      => false,
> 				'option'        => 'comment_max_links'
> 			),
> 			'moderation_keys' => array(
> 				'desc'          => __( 'Any content of a comment that matches an item in this list is immediately sent to the moderation queue' ),
> 				'readonly'      => false,
> 				'option'        => 'moderation_keys'
> 			),
> 			'blacklist_keys' => array(
> 				'desc'          => __( 'Any content of a comment that matches an item in this list is immediately marked as spam' ),
> 				'readonly'      => false,
> 				'option'        => 'blacklist_keys'
5237,5238c5332,5333
< 		if ( ('publish' == $post_status) ) {
< 			if ( ( 'page' == $post_type ) && ! current_user_can( 'publish_pages' ) ) {
---
> 		if ( 'publish' == $post_status || 'private' == $post_status ) {
> 			if ( 'page' == $post_type && ! current_user_can( 'publish_pages' ) ) {
