Changeset 25309
- Timestamp:
- 09/09/2013 08:09:20 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-http.php
r25303 r25309 667 667 * @package WordPress 668 668 * @subpackage HTTP 669 * @since 3.7.0 669 * 670 * @since 2.7.0 671 * @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client(). 670 672 */ 671 673 class WP_Http_Streams { … … 675 677 * @see WP_Http::request For default options descriptions. 676 678 * 677 * @since 3.7.0 679 * @since 2.7.0 680 * @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client(). 681 * 678 682 * @access public 679 683 * @param string $url URI resource. … … 999 1003 * @static 1000 1004 * @access public 1001 * @since 3.7.0 1005 * @since 2.7.0 1006 * @since 3.7.0 Combined with the fsockopen transport and switched to stream_socket_client(). 1002 1007 * 1003 1008 * @return boolean False means this class can not be used, true means it can. … … 1022 1027 /** 1023 1028 * Deprecated HTTP Transport method which used fsockopen. 1029 * 1024 1030 * This class is not used, and is included for backwards compatibility only. 1025 1031 * All code should make use of WP_HTTP directly through it's API. … … 1029 1035 * @package WordPress 1030 1036 * @subpackage HTTP 1031 * @since 3.7.0 1037 * 1038 * @since 2.7.0 1039 * @deprecated 3.7.0 Please use WP_HTTP::request() directly 1032 1040 */ 1033 1041 class WP_HTTP_Fsockopen extends WP_HTTP_Streams {
Note: See TracChangeset
for help on using the changeset viewer.