Changeset 37985 for trunk/src/wp-includes/functions.php
- Timestamp:
- 07/06/2016 12:39:01 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/functions.php
r37979 r37985 647 647 function wp_get_http_headers( $url, $deprecated = false ) { 648 648 if ( !empty( $deprecated ) ) 649 _deprecated_argument( __FUNCTION__, '2.7 ' );649 _deprecated_argument( __FUNCTION__, '2.7.0' ); 650 650 651 651 $response = wp_safe_remote_head( $url ); … … 2116 2116 function wp_upload_bits( $name, $deprecated, $bits, $time = null ) { 2117 2117 if ( !empty( $deprecated ) ) 2118 _deprecated_argument( __FUNCTION__, '2.0 ' );2118 _deprecated_argument( __FUNCTION__, '2.0.0' ); 2119 2119 2120 2120 if ( empty( $name ) ) … … 3848 3848 * 3849 3849 * if ( ! empty( $deprecated ) ) { 3850 * _deprecated_argument( __FUNCTION__, '3.0 ' );3850 * _deprecated_argument( __FUNCTION__, '3.0.0' ); 3851 3851 * } 3852 3852 *
Note: See TracChangeset
for help on using the changeset viewer.