- Timestamp:
- 07/07/2023 05:51:11 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-autosaves-controller.php
r55988 r56163 372 372 } 373 373 374 if ( ! $autosave_is_different ) {375 return new WP_Error(376 'rest_autosave_no_changes',377 __( 'There is nothing to save. The autosave and the post content are the same.' ),378 array( 'status' => 400 )379 );380 }381 382 374 $user_id = get_current_user_id(); 383 375 384 376 // Store one autosave per author. If there is already an autosave, overwrite it. 385 377 $old_autosave = wp_get_post_autosave( $post_id, $user_id ); 378 379 if ( ! $autosave_is_different && $old_autosave ) { 380 // Nothing to save, return the existing autosave. 381 return $old_autosave->ID; 382 } 386 383 387 384 if ( $old_autosave ) {
Note: See TracChangeset
for help on using the changeset viewer.