Twenty Sixteen: After [41343], add missing space to if condition in twentysixteen_content_image_sizes_attr().

Fixes #38468.
Built from https://develop.svn.wordpress.org/trunk@41580


git-svn-id: http://core.svn.wordpress.org/trunk@41413 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2017-09-23 12:25:45 +00:00
parent fa5abb2474
commit 29fa55f71d
2 changed files with 2 additions and 2 deletions

View File

@ -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';
}

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.9-alpha-41579';
$wp_version = '4.9-alpha-41580';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.