Make WordPress Core

Changeset 23437


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

Add missing inline descriptions. see #19067.

Location:
trunk
Files:
2 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}
  • trunk/wp-includes/media.php

    r23410 r23437  
    11111111
    11121112/**
    1113  * {@internal Missing Short Description}}
     1113 * Converts a shorthand byte value to an integer byte value.
    11141114 *
    11151115 * @since 2.3.0
    11161116 *
    1117  * @param unknown_type $size
    1118  * @return unknown
     1117 * @param string $size A shorthand byte value.
     1118 * @return int An integer byte value.
    11191119 */
    11201120function wp_convert_hr_to_bytes( $size ) {
     
    11311131
    11321132/**
    1133  * {@internal Missing Short Description}}
     1133 * Converts an integer byte value to a shorthand byte value.
    11341134 *
    11351135 * @since 2.3.0
    11361136 *
    1137  * @param unknown_type $bytes
    1138  * @return unknown
     1137 * @param int $bytes An integer byte value.
     1138 * @return string A shorthand byte value.
    11391139 */
    11401140function wp_convert_bytes_to_hr( $bytes ) {
     
    11471147
    11481148/**
    1149  * {@internal Missing Short Description}}
     1149 * Determine the maximum upload size allowed in php.ini.
    11501150 *
    11511151 * @since 2.5.0
    11521152 *
    1153  * @return unknown
     1153 * @return int Allowed upload size.
    11541154 */
    11551155function wp_max_upload_size() {
Note: See TracChangeset for help on using the changeset viewer.