From 747b1eb7138407b54a4b6c79ee6c6b1e509d155b Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 25 Jun 2015 21:02:25 +0000 Subject: [PATCH] After [32866], fix doc blocks. Props DrewAPicture. See #32363. Built from https://develop.svn.wordpress.org/trunk@32949 git-svn-id: http://core.svn.wordpress.org/trunk@32920 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/media.php | 12 ++++++------ wp-includes/version.php | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/wp-includes/media.php b/wp-includes/media.php index d10b5a5462..9bf83bbb49 100644 --- a/wp-includes/media.php +++ b/wp-includes/media.php @@ -711,15 +711,15 @@ function wp_get_attachment_image_src( $attachment_id, $size = 'thumbnail', $icon } } /** - * Filter the image src result + * Filter the image src result. * * @since 4.3.0 * - * @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 Optional. Registered image size to retrieve the source for or a flat - * array of height and width dimensions. Default 'thumbnail'. - * @param bool $icon Optional. Whether the image should be treated as an icon. Default false. + * @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 bool $icon Whether the image should be treated as an icon. Default false. */ return apply_filters( 'attachment_image_src', $image, $attachment_id, $size, $icon ); } diff --git a/wp-includes/version.php b/wp-includes/version.php index 4286637223..0a9a16a556 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.3-alpha-32948'; +$wp_version = '4.3-alpha-32949'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.