Docs: Synchronize some comments in wp-admin/revision.php
.
See #49572. git-svn-id: https://develop.svn.wordpress.org/trunk@48624 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
565de1735c
commit
5c064bb139
@ -47,13 +47,13 @@ switch ( $action ) {
|
||||
break;
|
||||
}
|
||||
|
||||
// Restore if revisions are enabled or this is an autosave.
|
||||
// Don't restore if revisions are disabled and this is not an autosave.
|
||||
if ( ! wp_revisions_enabled( $post ) && ! wp_is_post_autosave( $revision ) ) {
|
||||
$redirect = 'edit.php?post_type=' . $post->post_type;
|
||||
break;
|
||||
}
|
||||
|
||||
// Don't allow revision restore when post is locked.
|
||||
// Don't restore if the post is locked.
|
||||
if ( wp_check_post_lock( $post->ID ) ) {
|
||||
break;
|
||||
}
|
||||
@ -61,6 +61,7 @@ switch ( $action ) {
|
||||
check_admin_referer( "restore-post_{$revision->ID}" );
|
||||
|
||||
wp_restore_post_revision( $revision->ID );
|
||||
|
||||
$redirect = add_query_arg(
|
||||
array(
|
||||
'message' => 5,
|
||||
@ -86,7 +87,7 @@ switch ( $action ) {
|
||||
break;
|
||||
}
|
||||
|
||||
// Revisions disabled and we're not looking at an autosave.
|
||||
// Bail if revisions are disabled and this is not an autosave.
|
||||
if ( ! wp_revisions_enabled( $post ) && ! wp_is_post_autosave( $revision ) ) {
|
||||
$redirect = 'edit.php?post_type=' . $post->post_type;
|
||||
break;
|
||||
|
Loading…
Reference in New Issue
Block a user