Changeset 23437
- Timestamp:
- 02/16/2013 02:52:57 AM (12 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/deprecated.php
r23416 r23437 1013 1013 * @deprecated 3.5.0 1014 1014 * @deprecated Use image_resize() 1015 * @see 1015 * @see image_resize() 1016 1016 * 1017 1017 * @param mixed $file Filename of the original image, Or attachment id. … … 1021 1021 */ 1022 1022 function wp_create_thumbnail( $file, $max_side, $deprecated = '' ) { 1023 _deprecated_function( __FUNCTION__, '3.5', 'image_resize ' );1023 _deprecated_function( __FUNCTION__, '3.5', 'image_resize()' ); 1024 1024 return apply_filters( 'wp_create_thumbnail', image_resize( $file, $max_side, $max_side ) ); 1025 1025 } -
trunk/wp-includes/media.php
r23410 r23437 1111 1111 1112 1112 /** 1113 * {@internal Missing Short Description}}1113 * Converts a shorthand byte value to an integer byte value. 1114 1114 * 1115 1115 * @since 2.3.0 1116 1116 * 1117 * @param unknown_type $size1118 * @return unknown1117 * @param string $size A shorthand byte value. 1118 * @return int An integer byte value. 1119 1119 */ 1120 1120 function wp_convert_hr_to_bytes( $size ) { … … 1131 1131 1132 1132 /** 1133 * {@internal Missing Short Description}}1133 * Converts an integer byte value to a shorthand byte value. 1134 1134 * 1135 1135 * @since 2.3.0 1136 1136 * 1137 * @param unknown_type $bytes1138 * @return unknown1137 * @param int $bytes An integer byte value. 1138 * @return string A shorthand byte value. 1139 1139 */ 1140 1140 function wp_convert_bytes_to_hr( $bytes ) { … … 1147 1147 1148 1148 /** 1149 * {@internal Missing Short Description}}1149 * Determine the maximum upload size allowed in php.ini. 1150 1150 * 1151 1151 * @since 2.5.0 1152 1152 * 1153 * @return unknown1153 * @return int Allowed upload size. 1154 1154 */ 1155 1155 function wp_max_upload_size() {
Note: See TracChangeset
for help on using the changeset viewer.