Check Published for future posts. fixes #2488
git-svn-id: https://develop.svn.wordpress.org/trunk@3560 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
24f330346d
commit
30c5d8a624
@ -99,7 +99,7 @@ addLoadEvent(focusit);
|
|||||||
<fieldset class="dbx-box">
|
<fieldset class="dbx-box">
|
||||||
<h3 class="dbx-handle"><?php _e('Post Status') ?></h3>
|
<h3 class="dbx-handle"><?php _e('Post Status') ?></h3>
|
||||||
<div class="dbx-content"><?php if ( current_user_can('publish_posts') ) : ?>
|
<div class="dbx-content"><?php if ( current_user_can('publish_posts') ) : ?>
|
||||||
<label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post->post_status, 'publish'); ?> /> <?php _e('Published') ?></label>
|
<label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post->post_status, 'publish'); checked($post->post_status, 'future'); ?> /> <?php _e('Published') ?></label>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post->post_status, 'draft'); ?> /> <?php _e('Draft') ?></label>
|
<label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post->post_status, 'draft'); ?> /> <?php _e('Draft') ?></label>
|
||||||
<label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post->post_status, 'private'); ?> /> <?php _e('Private') ?></label></div>
|
<label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post->post_status, 'private'); ?> /> <?php _e('Private') ?></label></div>
|
||||||
|
@ -58,7 +58,7 @@ addLoadEvent(focusit);
|
|||||||
<fieldset class="dbx-box">
|
<fieldset class="dbx-box">
|
||||||
<h3 class="dbx-handle"><?php _e('Page Status') ?></h3>
|
<h3 class="dbx-handle"><?php _e('Page Status') ?></h3>
|
||||||
<div class="dbx-content"><?php if ( current_user_can('publish_posts') ) : ?>
|
<div class="dbx-content"><?php if ( current_user_can('publish_posts') ) : ?>
|
||||||
<label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post->post_status, 'publish'); ?> /> <?php _e('Published') ?></label>
|
<label for="post_status_publish" class="selectit"><input id="post_status_publish" name="post_status" type="radio" value="publish" <?php checked($post->post_status, 'publish'); checked($post->post_status, 'future'; ?> /> <?php _e('Published') ?></label>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
<label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post->post_status, 'draft'); ?> /> <?php _e('Draft') ?></label>
|
<label for="post_status_draft" class="selectit"><input id="post_status_draft" name="post_status" type="radio" value="draft" <?php checked($post->post_status, 'draft'); ?> /> <?php _e('Draft') ?></label>
|
||||||
<label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post->post_status, 'private'); ?> /> <?php _e('Private') ?></label></div>
|
<label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="radio" value="private" <?php checked($post->post_status, 'private'); ?> /> <?php _e('Private') ?></label></div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user