Changeset 47612 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 04/22/2020 03:40:41 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r47611 r47612 3984 3984 return wp_filter_content_tags( $content ); 3985 3985 } 3986 3987 /** 3988 * Turn register globals off. 3989 * 3990 * @since 2.1.0 3991 * @access private 3992 * @deprecated 5.5.0 3993 */ 3994 function wp_unregister_GLOBALS() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid 3995 // register_globals was deprecated in PHP 5.3 and removed entirely in PHP 5.4. 3996 _deprecated_function( __FUNCTION__, '5.5.0' ); 3997 }
Note: See TracChangeset
for help on using the changeset viewer.