Make WordPress Core


Ignore:
Timestamp:
09/28/2013 08:24:28 AM (11 years ago)
Author:
nacin
Message:

Mark _search_terms_tidy() as deprecated in 3.7. see #7394.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/deprecated.php

    r25632 r25640  
    33183318
    33193319/**
    3320  * Formerly used internally to tidy up the search terms.
    3321  *
    3322  * @access private
    3323  * @since 2.9.0
    3324  * @deprecated 3.7.0
    3325  */
    3326 function _search_terms_tidy( $t ) {
    3327     _deprecated_function( __FUNCTION__, '3.5', '' );
    3328     return trim( $t, "\"'\n\r " );
    3329 }
    3330 
    3331 /**
    33323320 * Check if the installed version of GD supports particular image type
    33333321 *
     
    33913379    return $size . $unit;
    33923380}
     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 */
     3389function _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.