1
0
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 . See .
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:
Rachel Baker 2017-12-03 18:11:53 +00:00
parent 36b3f1707c
commit 01eeeb80fd
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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.