From cb3abb4abc4d7e717b5d39e0cab94dc2c6b42726 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Wed, 18 Oct 2017 16:37:08 +0000 Subject: [PATCH] Docs: Correct type and description for the `$data` parameter in `WP_Http::browser_redirect_compatibility()`. Fixes #41380. git-svn-id: https://develop.svn.wordpress.org/trunk@41907 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-http.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-http.php b/src/wp-includes/class-http.php index 99b20a941a..c802f7faef 100644 --- a/src/wp-includes/class-http.php +++ b/src/wp-includes/class-http.php @@ -458,7 +458,7 @@ class WP_Http { * * @param string $location URL to redirect to. * @param array $headers Headers for the redirect. - * @param mixed $data The data to add to the cache. + * @param string|array $data Body to send with the request. * @param array $options Redirect request options. * @param Requests_Response $original Response object. */