diff --git a/wp-includes/media.php b/wp-includes/media.php index 7e7afc029a..7c9312e49d 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -737,8 +737,8 @@ function wp_get_attachment_image_src( $attachment_id, $size = 'thumbnail', $icon * * @param array|false $image Either array with src, width & height, icon src, or false. * @param int $attachment_id Image attachment ID. - * @param string|array $size Registered image size to retrieve the source for or a flat - * array of height and width dimensions. Default 'thumbnail'. + * @param string|array $size Size of image. Image size or array of width and height values + * (in that order). Default 'thumbnail'. * @param bool $icon Whether the image should be treated as an icon. Default false. */ return apply_filters( 'wp_get_attachment_image_src', $image, $attachment_id, $size, $icon ); diff --git a/wp-includes/version.php b/wp-includes/version.php index f8defa0a2e..5fd5699cf0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.4-alpha-35040'; +$wp_version = '4.4-alpha-35041'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.