Show Publish Immediately instead of dave time for drafts. fixes #7806
git-svn-id: https://develop.svn.wordpress.org/trunk@9044 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
25afcb0e04
commit
070c8bb262
@ -132,7 +132,7 @@ if ( 0 != $post->ID ) {
|
||||
$stamp = __('Scheduled for: %1$s at %2$s');
|
||||
} else if ( 'publish' == $post->post_status ) { // already published
|
||||
$stamp = __('Published on: %1$s at %2$s');
|
||||
} else if ( '0000-00-00 00:00:00' == $post->post_date ) { // draft, 1 or more saves, no date specified
|
||||
} else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
|
||||
$stamp = __('Publish immediately');
|
||||
} else { // draft, 1 or more saves, date specified
|
||||
$stamp = __('Publish on: %1$s at %2$s');
|
||||
|
@ -118,7 +118,7 @@ if ( 0 != $post->ID ) {
|
||||
$stamp = __('Scheduled for: %1$s at %2$s');
|
||||
} else if ( 'publish' == $post->post_status ) { // already published
|
||||
$stamp = __('Published on: %1$s at %2$s');
|
||||
} else if ( '0000-00-00 00:00:00' == $post->post_date ) { // draft, 1 or more saves, no date specified
|
||||
} else if ( '0000-00-00 00:00:00' == $post->post_date_gmt ) { // draft, 1 or more saves, no date specified
|
||||
$stamp = __('Publish immediately');
|
||||
} else { // draft, 1 or more saves, date specified
|
||||
$stamp = __('Publish on: %1$s at %2$s');
|
||||
|
Loading…
Reference in New Issue
Block a user