diff --git a/typo3/sysext/core/Classes/Utility/CommandUtility.php b/typo3/sysext/core/Classes/Utility/CommandUtility.php index c1bc90c6eb2c294bb35700c2124587e7cf5cac48..a1a894cd6435da9feee38cee20f3cb5dd04d6fe9 100644 --- a/typo3/sysext/core/Classes/Utility/CommandUtility.php +++ b/typo3/sysext/core/Classes/Utility/CommandUtility.php @@ -110,13 +110,14 @@ class CommandUtility $path = self::escapeShellArgument($path . $command . $isExt); } // strip profile information for thumbnails and reduce their size - if ($parameters && $command !== 'identify' - && $gfxConf['processor_stripColorProfileByDefault'] - && $gfxConf['processor_stripColorProfileCommand'] !== '' - && strpos($parameters, $gfxConf['processor_stripColorProfileCommand']) === false - ) { + if ($parameters && $command !== 'identify') { // Determine whether the strip profile action has be disabled by TypoScript: - if ($parameters !== '-version' && strpos($parameters, '###SkipStripProfile###') === false) { + if ($gfxConf['processor_stripColorProfileByDefault'] + && $gfxConf['processor_stripColorProfileCommand'] !== '' + && strpos($parameters, $gfxConf['processor_stripColorProfileCommand']) === false + && $parameters !== '-version' + && strpos($parameters, '###SkipStripProfile###') === false + ) { $parameters = $gfxConf['processor_stripColorProfileCommand'] . ' ' . $parameters; } else { $parameters = str_replace('###SkipStripProfile###', '', $parameters);