--- a/wp/wp-admin/post.php Tue Dec 15 15:52:01 2020 +0100
+++ b/wp/wp-admin/post.php Wed Sep 21 18:19:35 2022 +0200
@@ -291,7 +291,14 @@
wp_die( __( 'Error in restoring the item from Trash.' ) );
}
- wp_redirect( add_query_arg( 'untrashed', 1, $sendback ) );
+ $sendback = add_query_arg(
+ array(
+ 'untrashed' => 1,
+ 'ids' => $post_id,
+ ),
+ $sendback
+ );
+ wp_redirect( $sendback );
exit;
case 'delete':
@@ -332,7 +339,7 @@
exit;
case 'toggle-custom-fields':
- check_admin_referer( 'toggle-custom-fields' );
+ check_admin_referer( 'toggle-custom-fields', 'toggle-custom-fields-nonce' );
$current_user_id = get_current_user_id();
if ( $current_user_id ) {