Changeset 47748 for trunk/src/wp-includes/media.php
- Timestamp:
- 05/02/2020 10:55:17 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/media.php
r47554 r47748 948 948 * @type int $1 Image width in pixels. 949 949 * @type int $2 Image height in pixels. 950 * @type bool $3 Whether the image is a resized image. 950 951 * } 951 952 */ … … 969 970 970 971 if ( $src && $width && $height ) { 971 $image = array( $src, $width, $height );972 $image = array( $src, $width, $height, false ); 972 973 } 973 974 } … … 983 984 * @type int $1 Image width in pixels. 984 985 * @type int $2 Image height in pixels. 986 * @type bool $3 Whether the image is a resized image. 985 987 * } 986 988 * @param int $attachment_id Image attachment ID.
Note: See TracChangeset
for help on using the changeset viewer.