From c288d39db20964e68365c3eed2c509715ddde3c4 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Thu, 11 Oct 2018 06:35:23 +0000 Subject: [PATCH] REST API: Pass correct ID to `meta->update_value` to permit setting term meta during term creation. Props joehoyle. Merges [43636] to the 5.0 branch. Fixes #44834. Built from https://develop.svn.wordpress.org/branches/5.0@43714 git-svn-id: http://core.svn.wordpress.org/branches/5.0@43543 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- .../rest-api/endpoints/class-wp-rest-terms-controller.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php b/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php index 42bfd6653e..2ff122eeb8 100644 --- a/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php +++ b/wp-includes/rest-api/endpoints/class-wp-rest-terms-controller.php @@ -441,7 +441,7 @@ class WP_REST_Terms_Controller extends WP_REST_Controller { $schema = $this->get_item_schema(); if ( ! empty( $schema['properties']['meta'] ) && isset( $request['meta'] ) ) { - $meta_update = $this->meta->update_value( $request['meta'], (int) $request['id'] ); + $meta_update = $this->meta->update_value( $request['meta'], $term->term_id ); if ( is_wp_error( $meta_update ) ) { return $meta_update; diff --git a/wp-includes/version.php b/wp-includes/version.php index 338331e4a3..5b6dd7f949 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43713'; +$wp_version = '5.0-alpha-43714'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.