Changeset 37431 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 05/13/2016 06:40:19 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r37114 r37431 2062 2062 function wp_specialchars( $string, $quote_style = ENT_NOQUOTES, $charset = false, $double_encode = false ) { 2063 2063 _deprecated_function( __FUNCTION__, '2.8', 'esc_html()' ); 2064 if ( func_num_args() > 1 ) { // Maintain back wards compat for people passing additional args2064 if ( func_num_args() > 1 ) { // Maintain back-compat for people passing additional arguments. 2065 2065 $args = func_get_args(); 2066 2066 return call_user_func_array( '_wp_specialchars', $args ); … … 2086 2086 2087 2087 /** 2088 * Register widget for sidebar with backward scompatibility.2088 * Register widget for sidebar with backward compatibility. 2089 2089 * 2090 2090 * Allows $name to be an array that accepts either three elements to grab the … … 2092 2092 * the array for the name. 2093 2093 * 2094 * Passes to {@link wp_register_sidebar_widget()} after argument list and2095 * backwardscompatibility is complete.2094 * Passes to wp_register_sidebar_widget() after argument list and backward 2095 * compatibility is complete. 2096 2096 * 2097 2097 * @since 2.2.0
Note: See TracChangeset
for help on using the changeset viewer.