Changeset 23437 for trunk/wp-includes/media.php
- Timestamp:
- 02/16/2013 02:52:57 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.