From bd296beea44facf78f195d99c1dbd5d9fc788b26 Mon Sep 17 00:00:00 2001 From: Benni Mack <benni@typo3.org> Date: Sun, 8 Oct 2017 15:17:07 +0200 Subject: [PATCH] [TASK] Clean up unused option in Install Tool This option was renamed and is set in init() of GraphicalFunctions anyway, so the call can be removed (and also, does not create a PHP notice). Resolves: #82700 Releases: master, 8.7 Change-Id: Ib2328676eaf123755b97ae09fd070f6e82250c92 Reviewed-on: https://review.typo3.org/54324 Tested-by: TYPO3com <no-reply@typo3.com> Reviewed-by: Christian Kuhn <lolli@schwarzbu.ch> Tested-by: Christian Kuhn <lolli@schwarzbu.ch> --- .../sysext/install/Classes/Controller/EnvironmentController.php | 1 - 1 file changed, 1 deletion(-) diff --git a/typo3/sysext/install/Classes/Controller/EnvironmentController.php b/typo3/sysext/install/Classes/Controller/EnvironmentController.php index 7ac88745dbb4..9582c61cceb6 100644 --- a/typo3/sysext/install/Classes/Controller/EnvironmentController.php +++ b/typo3/sysext/install/Classes/Controller/EnvironmentController.php @@ -750,7 +750,6 @@ class EnvironmentController extends AbstractController $imageProcessor->filenamePrefix = 'installTool-'; $imageProcessor->dontCompress = 1; $imageProcessor->alternativeOutputKey = 'typo3InstallTest'; - $imageProcessor->noFramePrepended = $GLOBALS['TYPO3_CONF_VARS']['GFX']['processor_allowFrameSelection']; return $imageProcessor; } -- GitLab