diff --git a/src/wp-admin/includes/meta-boxes.php b/src/wp-admin/includes/meta-boxes.php
index 703c1ab..de41a6f 100644
a
|
b
|
do_action( 'post_submitbox_minor_actions', $post ); |
112 | 112 | ?> |
113 | 113 | </span> |
114 | 114 | <?php |
115 | | if ( 'publish' == $post->post_status || 'private' == $post->post_status || $can_publish ) { |
| 115 | if ( 'publish' == $post->post_status || 'private' == $post->post_status || $can_publish || current_user_can( 'edit_post', $post->ID ) ) { |
116 | 116 | $private_style = ''; |
117 | 117 | if ( 'private' == $post->post_status ) { |
118 | 118 | $private_style = 'style="display:none"'; |