mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
107d13bc28
This renames the file containing the `WP_Http` class to conform to the coding standards. This commit also includes: - A new `class-http.php` that includes the new file, for anyone that may've been including the file directly. - Replaces references to the old filename with the new filename. Follow-up to [8516], [13274], [33748]. Fixes #54389. See #53359. Built from https://develop.svn.wordpress.org/trunk@52026 git-svn-id: http://core.svn.wordpress.org/trunk@51618 1a063a9b-81f0-0310-95a4-ce76da25c4cd
15 lines
373 B
PHP
15 lines
373 B
PHP
<?php
|
|
/**
|
|
* Core class used for managing HTTP transports and making HTTP requests.
|
|
*
|
|
* This file is deprecated, use 'wp-includes/class-wp-http.php' instead.
|
|
*
|
|
* @deprecated 5.9.0
|
|
* @package WordPress
|
|
*/
|
|
|
|
_deprecated_file( basename( __FILE__ ), '5.9.0', 'wp-includes/class-wp-http.php' );
|
|
|
|
/** WP_Http class */
|
|
require_once ABSPATH . 'wp-includes/class-wp-http.php';
|