From 0404082b1860ced1e3080deb07aab2c206c86b07 Mon Sep 17 00:00:00 2001 From: Drew Jaynes Date: Fri, 23 Oct 2015 15:43:24 +0000 Subject: [PATCH] Docs: Syntax fixes for deprecating `WP_Http::parse_url()`. See #32246. Built from https://develop.svn.wordpress.org/trunk@35375 git-svn-id: http://core.svn.wordpress.org/trunk@35339 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-http.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-http.php b/wp-includes/class-http.php index 1941c87d3a..98fda58623 100644 --- a/wp-includes/class-http.php +++ b/wp-includes/class-http.php @@ -686,10 +686,11 @@ class WP_Http { } /** - * A wrapper for PHP's parse_url() function that handles edgecases in < PHP 5.4.7 + * Used as a wrapper for PHP's parse_url() function that handles edgecases in < PHP 5.4.7. * * @access protected - * @deprecated 4.4.0 See wp_parse_url() + * @deprecated 4.4.0 Use wp_parse_url() + * @see wp_parse_url() * * @param string $url The URL to parse. * @return bool|array False on failure; Array of URL components on success;