Changeset 25640 for trunk/src/wp-includes/deprecated.php
- Timestamp:
- 09/28/2013 08:24:28 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/deprecated.php
r25632 r25640 3318 3318 3319 3319 /** 3320 * Formerly used internally to tidy up the search terms.3321 *3322 * @access private3323 * @since 2.9.03324 * @deprecated 3.7.03325 */3326 function _search_terms_tidy( $t ) {3327 _deprecated_function( __FUNCTION__, '3.5', '' );3328 return trim( $t, "\"'\n\r " );3329 }3330 3331 /**3332 3320 * Check if the installed version of GD supports particular image type 3333 3321 * … … 3391 3379 return $size . $unit; 3392 3380 } 3381 3382 /** 3383 * Formerly used internally to tidy up the search terms. 3384 * 3385 * @access private 3386 * @since 2.9.0 3387 * @deprecated 3.7.0 3388 */ 3389 function _search_terms_tidy( $t ) { 3390 _deprecated_function( __FUNCTION__, '3.7' ); 3391 return trim( $t, "\"'\n\r " ); 3392 }
Note: See TracChangeset
for help on using the changeset viewer.