Responsive Images: fix typo in r35358.

Props aduth.
See #34341.

git-svn-id: https://develop.svn.wordpress.org/trunk@35378 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2015-10-23 17:37:35 +00:00
parent fd19ba9cde
commit 2c1f21190d
1 changed files with 1 additions and 1 deletions

View File

@ -956,7 +956,7 @@ function wp_get_attachment_image_srcset_array( $attachment_id, $size = 'medium'
// Filter out images that are wider than $max_srcset_width.
if ( $max_srcset_width && $img['width'] > $max_srcset_width ) {
$contiue;
continue;
}
$candidate_url = path_join( dirname( $img_url ), $img['file'] );