diff --git a/wp-admin/edit-form-advanced.php b/wp-admin/edit-form-advanced.php
index bc902c5c95..064b30aa20 100644
--- a/wp-admin/edit-form-advanced.php
+++ b/wp-admin/edit-form-advanced.php
@@ -165,7 +165,7 @@ if ( !empty( $post->post_password ) ) {
$visibility_trans = __('Private');
} elseif ( is_sticky( $post->ID ) ) {
$visibility = 'public';
- $visibility_trans = __('Public, sticky');
+ $visibility_trans = __('Public, Sticky');
$sticky = 'sticky';
} else {
$visibility = 'public';
diff --git a/wp-admin/edit-page-form.php b/wp-admin/edit-page-form.php
index 728e603165..b48d446bdb 100644
--- a/wp-admin/edit-page-form.php
+++ b/wp-admin/edit-page-form.php
@@ -85,8 +85,8 @@ function page_submit_meta_box($post) {
-post_status && 'private' != $post->post_status && 'future' != $post->post_status && 'pending' != $post->post_status ) { ?>
-
+post_status && 'future' != $post->post_status && 'pending' != $post->post_status ) { ?>
+
post_status ) { ?>style="display:none" type="submit" name="save" id="save-post" value="" tabindex="4" class="button button-highlighted" />
post_status && $can_publish ) { ?>
@@ -106,8 +106,10 @@ function page_submit_meta_box($post) {
post_status ) {
- case 'publish':
case 'private':
+ _e('Privately Published');
+ break;
+ case 'publish':
_e('Published');
break;
case 'future':
@@ -123,13 +125,15 @@ switch ( $post->post_status ) {
?>
post_status || 'private' == $post->post_status || $can_publish ) { ?>
-
+
post_status ) { ?>style="display:none;" class="edit-post-status hide-if-no-js" tabindex='4'>
+
+
post_password ) ) {
+ $visibility = 'password';
+ $visibility_trans = __('Password protected');
+} elseif ( 'private' == $post->post_status ) {
+ $visibility = 'private';
+ $visibility_trans = __('Private');
+} else {
+ $visibility = 'public';
+ $visibility_trans = __('Public');
+}
+
+?>
+
+
+
+
+
+
+
/>
+
/>
+
+
/>
+
+
+
+
+
+
+
+
+
+
ID ) {
if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date
$stamp = __('Scheduled for:
%1$s');
- } else if ( 'publish' == $post->post_status ) { // already published
+ } else if ( 'publish' == $post->post_status || 'private' == $post->post_status ) { // already published
$stamp = __('Published on:
%1$s');
} else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
$stamp = __('Publish
immediately');
@@ -188,17 +227,21 @@ if ( ( 'edit' == $action ) && current_user_can('delete_page', $post->ID) ) { ?>
post_status, array('publish', 'future') ) || 0 == $post->ID ) { ?>
+if ( !in_array( $post->post_status, array('publish', 'future', 'private') ) || 0 == $post->ID ) { ?>
post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?>
+
+
+
+
@@ -224,7 +267,7 @@ function page_password_meta_box($post){
-
+