From afd45937eb8aa2d23d06bd34d4bb04cf439add66 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Thu, 25 Jun 2015 21:01:56 +0000 Subject: [PATCH] After [32866], fix doc blocks. Props DrewAPicture. See #32363. git-svn-id: https://develop.svn.wordpress.org/trunk@32949 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/media.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php index d10b5a5462..9bf83bbb49 100644 --- a/src/wp-includes/media.php +++ b/src/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 ); }