From 2c1f21190da679d1220f07ed40bc1f5b29f54ac7 Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Fri, 23 Oct 2015 17:37:35 +0000 Subject: [PATCH] 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 --- src/wp-includes/media.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/media.php b/src/wp-includes/media.php index de1f2c480d..4f43e59139 100644 --- a/src/wp-includes/media.php +++ b/src/wp-includes/media.php @@ -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'] );