From 29fa55f71d40625f328dd2f9574e05ae3c91f060 Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Sat, 23 Sep 2017 12:25:45 +0000 Subject: [PATCH] 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 --- wp-content/themes/twentysixteen/functions.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-content/themes/twentysixteen/functions.php b/wp-content/themes/twentysixteen/functions.php index 75855f805e..e70a9acf14 100644 --- a/wp-content/themes/twentysixteen/functions.php +++ b/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'; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 0cc636b913..6044e85db0 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -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.