From f48d395ffb2c3a54a6e48b4592a003fb7d6bd3e1 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Tue, 15 Sep 2015 16:15:39 +0000 Subject: [PATCH] Docs: Update the hook doc summary for the `wp_http_ixr_client_headers` filter, introduced in [34164]. The idea is to try to reflect what the filterable value is rather than why it's filterable. Fixes #24598. git-svn-id: https://develop.svn.wordpress.org/trunk@34203 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-http-ixr-client.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wp-includes/class-wp-http-ixr-client.php b/src/wp-includes/class-wp-http-ixr-client.php index 769aa17669..601ca14319 100644 --- a/src/wp-includes/class-wp-http-ixr-client.php +++ b/src/wp-includes/class-wp-http-ixr-client.php @@ -69,11 +69,11 @@ class WP_HTTP_IXR_Client extends IXR_Client { } /** - * Filter to allow custom headers to be sent + * Filter the headers collection to be sent to the XML-RPC server. * * @since 4.4.0 * - * @param array $headers Header collection to be sent to the XML-RPC server. + * @param array $headers Array of headers to be sent. */ $args['headers'] = apply_filters( 'wp_http_ixr_client_headers', $args['headers'] );