Skip to content
Snippets Groups Projects
Commit b2da9dee authored by Oliver Bartsch's avatar Oliver Bartsch
Browse files

Revert "[BUGFIX] Use correct fallback types in ImageDimension"

This reverts commit 88a8a246.

Reason for revert: Accidentally merged without enough votes. Mixed up with a backport.

Change-Id: Ice9ccc3cf27758673358f1b6501c3f71130e732d
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/75149


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarJochen <rothjochen@gmail.com>
Tested-by: default avatarOliver Bartsch <bo@cedev.de>
Reviewed-by: default avatarJochen <rothjochen@gmail.com>
Reviewed-by: default avatarOliver Bartsch <bo@cedev.de>
parent 88a8a246
Branches
Tags
No related merge requests found
......@@ -81,8 +81,8 @@ class ImageDimension
$imageDimension->height,
$processedFile->getExtension(),
],
(string)($config['width'] ?? ''),
(string)($config['height'] ?? ''),
$config['width'] ?? null,
$config['height'] ?? null,
$config
);
$imageWidth = $geometryWidth = (int)$result[0];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment