diff --git a/typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php b/typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
index 4bd99137e70dc776c16e715640161a795336003a..4ffe2a952b3d91ca70fa4ce9ce4d6e9317cebfb6 100644
--- a/typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
+++ b/typo3/sysext/core/Classes/Imaging/GraphicalFunctions.php
@@ -41,11 +41,6 @@ use TYPO3\CMS\Core\Utility\MathUtility;
 class GraphicalFunctions {
 
 	// Internal configuration, set in init()
-	// The ImageMagick filename used for combining two images. This name changed during the versions.
-	/**
-	 * @todo Define visibility
-	 */
-	public $combineScript = 'combine';
 
 	// If set, there is no frame pointer prepended to the filenames.
 	/**
@@ -342,9 +337,6 @@ class GraphicalFunctions {
 		// Setting default JPG parameters:
 		$this->jpegQuality = MathUtility::forceIntegerInRange($gfxConf['jpg_quality'], 10, 100, 75);
 		$this->cmds['jpg'] = ($this->cmds['jpeg'] = '-colorspace ' . $this->colorspace . ' -sharpen 50 -quality ' . $this->jpegQuality);
-		if ($gfxConf['im_combine_filename']) {
-			$this->combineScript = $gfxConf['im_combine_filename'];
-		}
 		if ($gfxConf['im_noFramePrepended']) {
 			$this->noFramePrepended = 1;
 		}
diff --git a/typo3/sysext/core/Classes/Utility/CommandUtility.php b/typo3/sysext/core/Classes/Utility/CommandUtility.php
index 2ea68a8562c80d4985978d8bea84345175a62943..ab6480d2a2a02c041ff1dabd912e9f0d9ddf9148 100644
--- a/typo3/sysext/core/Classes/Utility/CommandUtility.php
+++ b/typo3/sysext/core/Classes/Utility/CommandUtility.php
@@ -116,7 +116,6 @@ class CommandUtility {
 		}
 		$path = \TYPO3\CMS\Core\Utility\GeneralUtility::fixWindowsFilePath($path);
 		$im_version = strtolower($gfxConf['im_version_5']);
-		$combineScript = $gfxConf['im_combine_filename'] ? trim($gfxConf['im_combine_filename']) : 'combine';
 		// This is only used internally, has no effect outside
 		if ($command === 'combine') {
 			$command = 'composite';
@@ -129,7 +128,7 @@ class CommandUtility {
 			if ($im_version === 'im6') {
 				$switchCompositeParameters = TRUE;
 			}
-			$path = escapeshellarg($path . ($command == 'composite' ? $combineScript : $command) . $isExt);
+			$path = escapeshellarg($path . ($command == 'composite' ? 'composite' : $command) . $isExt);
 		}
 		// strip profile information for thumbnails and reduce their size
 		if ($parameters && $command != 'identify' && $gfxConf['im_useStripProfileByDefault'] && $gfxConf['im_stripProfileCommand'] != '') {
diff --git a/typo3/sysext/core/Configuration/DefaultConfiguration.php b/typo3/sysext/core/Configuration/DefaultConfiguration.php
index 60248ce8eedb7bf172c560ed75e36418bde8f447..3838385c5fa5fb7578b0139ad76cbb9a008a72e0 100644
--- a/typo3/sysext/core/Configuration/DefaultConfiguration.php
+++ b/typo3/sysext/core/Configuration/DefaultConfiguration.php
@@ -48,7 +48,6 @@ return array(
 		'im_mask_temp_ext_gif' => FALSE,				// Boolean: This should be set if ImageMagick is version 5+. This is used in class.tslib_content.php for masking images and the extension png is normally used because it's faster than gif for temporary files. But png seems not to work with some IM 5+ versions, so...
 		'im_mask_temp_ext_noloss' => 'miff',			// String: Loss-less ImageMagick extension to use for mask processing in temporary filenames. Normally 'miff' (ImageMagick's OWN format) will do fine. However at least IM 5.4.9 has proved not to be able to write to its own file format which forced me to add this option. You can try and set this to tif/png/jpg if some masking doesn't work the way it should.
 		'im_noScaleUp' => FALSE,						// Boolean: If set, images are not being scaled up if told so (in t3lib/stdgraphics.php)
-		'im_combine_filename' => 'combine',				// String: Latest ImageMagick versions has changed the name of combine to composite. Configure here if needed.
 		'im_noFramePrepended' => FALSE,					// Boolean: If set, the [x] frame indicator is NOT prepended to filenames in stdgraphic. Some IM5+ version didn't work at all with the typical [0]-prefix, which allow multipage pdf's and animated gif's to be scaled only for the first frame/page and that seriously cuts down rendering time. Set this flag only if your ImageMagick version cannot find the files. Notice that changing this flag causes temporary filenames to change, thus the server will begin scaling images again which were previously cached.
 		'im_stripProfileCommand' => '+profile \'*\'',	// String: Specify the command to strip the profile information, which can reduce thumbnail size up to 60KB. Command can differ in IM/GM, IM also know the -strip command. See <a href="http://www.imagemagick.org/Usage/thumbnails/#profiles" target="_blank">imagemagick.org</a> for details
 		'im_useStripProfileByDefault' => TRUE,			// Boolean: If set, the im_stripProfileCommand is used with all IM Image operations by default. See tsRef for setting this parameter explocit for IMAGE generation.
diff --git a/typo3/sysext/install/Classes/Configuration/Image/CustomPreset.php b/typo3/sysext/install/Classes/Configuration/Image/CustomPreset.php
index a47cbc363cac0594832d91de7ed203221c5180e5..d4e64bf1244dcafe8826ae08939143052405d810 100644
--- a/typo3/sysext/install/Classes/Configuration/Image/CustomPreset.php
+++ b/typo3/sysext/install/Classes/Configuration/Image/CustomPreset.php
@@ -44,7 +44,6 @@ class CustomPreset extends Configuration\AbstractCustomPreset implements Configu
 		'GFX/im_imvMaskState' => 0,
 		'GFX/im_v5effects' => 0,
 		'GFX/im_mask_temp_ext_gif' => 0,
-		'GFX/im_combine_filename' => 'combine',
 		'GFX/colorspace' => '',
 	);
 }
diff --git a/typo3/sysext/install/Classes/Configuration/Image/ImageMagick6Preset.php b/typo3/sysext/install/Classes/Configuration/Image/ImageMagick6Preset.php
index 6d2f1875c774960176b8524643e268ea1d8d9776..09eeffe94d4098ca280f26ddddd78e8f2bec7f21 100644
--- a/typo3/sysext/install/Classes/Configuration/Image/ImageMagick6Preset.php
+++ b/typo3/sysext/install/Classes/Configuration/Image/ImageMagick6Preset.php
@@ -55,7 +55,6 @@ class ImageMagick6Preset extends AbstractImagePreset implements Configuration\Pr
 		'GFX/im_imvMaskState' => 1,
 		'GFX/im_v5effects' => 1,
 		'GFX/im_mask_temp_ext_gif' => 1,
-		'GFX/im_combine_filename' => 'composite',
 		'GFX/colorspace' => 'sRGB',
 	);
 
diff --git a/typo3/sysext/install/Classes/Controller/StepController.php b/typo3/sysext/install/Classes/Controller/StepController.php
index ba15de5f9db9c3052860aa304f1d02c9ea85e952..accea3b4fb1932e8474022dc61aed3a801203672 100644
--- a/typo3/sysext/install/Classes/Controller/StepController.php
+++ b/typo3/sysext/install/Classes/Controller/StepController.php
@@ -70,6 +70,8 @@ class StepController extends AbstractController {
 		'FE/defaultTypoScript_editorcfg.',
 		// #25099
 		'FE/simulateStaticDocuments',
+		// 52011
+		'GFX/im_combine_filename',
 		// #22687
 		'GFX/gdlib_2',
 		// #52010
diff --git a/typo3/sysext/install/Resources/Public/Images/TestReference/About.txt b/typo3/sysext/install/Resources/Public/Images/TestReference/About.txt
index 347bec3fde60a923139a5cfbd57917741401708d..ac9d0733d5db8c3d95a0842853407e28bc76ca95 100644
--- a/typo3/sysext/install/Resources/Public/Images/TestReference/About.txt
+++ b/typo3/sysext/install/Resources/Public/Images/TestReference/About.txt
@@ -8,7 +8,6 @@ These comparison images was generated by Kasper Skårhøj, using:
 $TYPO3_CONF_VARS['GFX']['im_path_lzw'] = '';
 $TYPO3_CONF_VARS['GFX']['TTFdpi'] = '96';
 $TYPO3_CONF_VARS['GFX']['gdlib_png'] = '1';
-$TYPO3_CONF_VARS['GFX']['im_combine_filename'] = 'composite';
 $TYPO3_CONF_VARS['GFX']['im_path'] = '/usr/bin/';
 $TYPO3_CONF_VARS['GFX']['im_version_5'] = 'im5';
 $TYPO3_CONF_VARS['GFX']['im_imvMaskState'] = '0';
@@ -30,4 +29,4 @@ WBMP Support		enabled
 
 - I was not able to create GIF files for reference so I just converted them directly with ImageMagick
 
-- Also LZW compression has NOT been used anywhere except the GD test images since ImageMagick doesn't support it.
+- Also LZW compression has NOT been used anywhere except the GD test images since ImageMagick doesn't support it.
\ No newline at end of file