From a6e19bbc34cd207fc65518549abe06f377ad1cb0 Mon Sep 17 00:00:00 2001 From: Claudiu Cristea Date: Tue, 8 Oct 2013 01:08:49 +0300 Subject: [PATCH] Issue #2105965 by claudiu.cristea: vijaycs85: Make sure all YML files in Image module has no type-casting to string. --- core/modules/image/config/image.style.large.yml | 8 ++++---- core/modules/image/config/image.style.medium.yml | 8 ++++---- core/modules/image/config/image.style.thumbnail.yml | 8 ++++---- 3 files changed, 12 insertions(+), 12 deletions(-) diff --git a/core/modules/image/config/image.style.large.yml b/core/modules/image/config/image.style.large.yml index cbd1c0c..1f7c10c 100644 --- a/core/modules/image/config/image.style.large.yml +++ b/core/modules/image/config/image.style.large.yml @@ -4,9 +4,9 @@ effects: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d: id: image_scale data: - width: '480' - height: '480' - upscale: '1' - weight: '0' + width: 480 + height: 480 + upscale: true + weight: 0 uuid: ddd73aa7-4bd6-4c85-b600-bdf2b1628d1d langcode: en diff --git a/core/modules/image/config/image.style.medium.yml b/core/modules/image/config/image.style.medium.yml index ba38b73..77e0d2a 100644 --- a/core/modules/image/config/image.style.medium.yml +++ b/core/modules/image/config/image.style.medium.yml @@ -4,9 +4,9 @@ effects: bddf0d06-42f9-4c75-a700-a33cafa25ea0: id: image_scale data: - width: '220' - height: '220' - upscale: '1' - weight: '0' + width: 220 + height: 220 + upscale: true + weight: 0 uuid: bddf0d06-42f9-4c75-a700-a33cafa25ea0 langcode: en diff --git a/core/modules/image/config/image.style.thumbnail.yml b/core/modules/image/config/image.style.thumbnail.yml index 0368dd3..22b5671 100644 --- a/core/modules/image/config/image.style.thumbnail.yml +++ b/core/modules/image/config/image.style.thumbnail.yml @@ -4,9 +4,9 @@ effects: 1cfec298-8620-4749-b100-ccb6c4500779: id: image_scale data: - width: '100' - height: '100' - upscale: '1' - weight: '0' + width: 100 + height: 100 + upscale: true + weight: 0 uuid: 1cfec298-8620-4749-b100-ccb6c4500779 langcode: en -- 1.8.3.1