Make WordPress Core


Ignore:
Timestamp:
02/16/2013 02:52:57 AM (12 years ago)
Author:
SergeyBiryukov
Message:

Add missing inline descriptions. see #19067.

File:
1 edited

Legend:

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

    r23416 r23437  
    10131013 * @deprecated 3.5.0
    10141014 * @deprecated Use image_resize()
    1015  * @see  image_resize()
     1015 * @see image_resize()
    10161016 *
    10171017 * @param mixed $file Filename of the original image, Or attachment id.
     
    10211021 */
    10221022function wp_create_thumbnail( $file, $max_side, $deprecated = '' ) {
    1023     _deprecated_function( __FUNCTION__, '3.5', 'image_resize' );
     1023    _deprecated_function( __FUNCTION__, '3.5', 'image_resize()' );
    10241024    return apply_filters( 'wp_create_thumbnail', image_resize( $file, $max_side, $max_side ) );
    10251025}
Note: See TracChangeset for help on using the changeset viewer.