mirror of
https://github.com/WordPress/WordPress.git
synced 2025-04-03 02:25:48 +02:00
REST API: Add existing term_id to the error data object when attempting to create a duplicate term.
Props shooper, coleh. Fixes #42597. See #41370. Built from https://develop.svn.wordpress.org/trunk@42350 git-svn-id: http://core.svn.wordpress.org/trunk@42179 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
36b3f1707c
commit
01eeeb80fd
wp-includes
@ -419,7 +419,7 @@ class WP_REST_Terms_Controller extends WP_REST_Controller {
|
||||
if ( $term_id = $term->get_error_data( 'term_exists' ) ) {
|
||||
$existing_term = get_term( $term_id, $this->taxonomy );
|
||||
$term->add_data( $existing_term->term_id, 'term_exists' );
|
||||
$term->add_data( array( 'status' => 409 ) );
|
||||
$term->add_data( array( 'status' => 409, 'term_id' => $term_id ) );
|
||||
}
|
||||
|
||||
return $term;
|
||||
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.0-alpha-42349';
|
||||
$wp_version = '5.0-alpha-42350';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user