From e8e68a50f88750226beb0d5426477fdb34f2bef7 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Fri, 21 Jul 2017 13:40:43 +0000 Subject: [PATCH] Docs: Correct `$term_id` parameter description in `wp_xmlrpc_server::get_term_custom_fields()` and `::set_term_custom_fields()`. Props upadalavipul. Fixes #41397. Built from https://develop.svn.wordpress.org/trunk@41114 git-svn-id: http://core.svn.wordpress.org/trunk@40954 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-xmlrpc-server.php | 4 ++-- wp-includes/version.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/class-wp-xmlrpc-server.php b/wp-includes/class-wp-xmlrpc-server.php index ffeb102d27..06e818cc57 100644 --- a/wp-includes/class-wp-xmlrpc-server.php +++ b/wp-includes/class-wp-xmlrpc-server.php @@ -408,7 +408,7 @@ class wp_xmlrpc_server extends IXR_Server { * * @since 4.9.0 * - * @param int $post_id Post ID. + * @param int $term_id Term ID. * @return array Array of custom fields, if they exist. */ public function get_term_custom_fields( $term_id ) { @@ -437,7 +437,7 @@ class wp_xmlrpc_server extends IXR_Server { * * @since 4.9.0 * - * @param int $post_id Post ID. + * @param int $term_id Term ID. * @param array $fields Custom fields. */ public function set_term_custom_fields( $term_id, $fields ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index 848f42c962..fbb352f9f9 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.9-alpha-41113'; +$wp_version = '4.9-alpha-41114'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.