Prevent double timezone offset when saving titleless AJAX-created drafts. fixes #3701
git-svn-id: https://develop.svn.wordpress.org/trunk@4882 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
855627315f
commit
f2bedff370
|
@ -155,7 +155,7 @@ case 'add-meta' :
|
|||
if ( !current_user_can( 'edit_post', $id ) )
|
||||
die('-1');
|
||||
if ( $id < 0 ) {
|
||||
$now = current_time('timestamp');
|
||||
$now = current_time('timestamp', 1);
|
||||
if ( $pid = wp_insert_post( array(
|
||||
'post_title' => sprintf('Draft created on %s at %s', date(get_option('date_format'), $now), date(get_option('time_format'), $now))
|
||||
) ) )
|
||||
|
|
Loading…
Reference in New Issue