diff --git a/wp-includes/media.php b/wp-includes/media.php index a7db3213fd..527e5dbc22 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -148,7 +148,8 @@ function image_hwstring( $width, $height ) { * @param int $id Attachment ID for image. * @param array|string $size Optional. Image size to scale to. Accepts a registered image size * or flat array of height and width values. Default 'medium'. - * @return false|array False on failure, array on success. + * @return false|array Array containing the image URL, width, height, and boolean for whether + * the image is an intermediate size. False on failure. */ function image_downsize( $id, $size = 'medium' ) { diff --git a/wp-includes/version.php b/wp-includes/version.php index ea90d70ea8..ca6127c85d 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-34361'; +$wp_version = '4.4-alpha-34362'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.