From 9fc9372d57f659829a7f61b5fe14cc7cba64309b Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 23 Sep 2017 12:24:13 +0000 Subject: [PATCH] Twenty Sixteen: After [41343], add missing space to `if` condition in `twentysixteen_content_image_sizes_attr()`. Fixes #38468. git-svn-id: https://develop.svn.wordpress.org/trunk@41580 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-content/themes/twentysixteen/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-content/themes/twentysixteen/functions.php b/src/wp-content/themes/twentysixteen/functions.php index 75855f805e..e70a9acf14 100644 --- a/src/wp-content/themes/twentysixteen/functions.php +++ b/src/wp-content/themes/twentysixteen/functions.php @@ -371,7 +371,7 @@ require get_template_directory() . '/inc/customizer.php'; function twentysixteen_content_image_sizes_attr( $sizes, $size ) { $width = $size[0]; - if ( 840 <= $width ){ + if ( 840 <= $width ) { $sizes = '(max-width: 709px) 85vw, (max-width: 909px) 67vw, (max-width: 1362px) 62vw, 840px'; }