From dfc6762032fe89eac797ba8fa5e69a06b523ec99 Mon Sep 17 00:00:00 2001 From: Bastian Date: Thu, 13 Apr 2017 12:28:34 +0200 Subject: [PATCH] BUGFIX: Fix code migration With the namespace change the code migration `TYPO3.Form-20160601101500` has not been adjusted completely, see: https://github.com/neos/form/commit/dfa23c6561e3e5877b8d15197204f8811b1921d3#commitcomment-21736520 As a result, it adds new `TYPO3.Form.*` settings if the settings have been adjusted to the new namespace (`Neos.Form.*`) already. This change fixes this. Fixes: #42 --- Migrations/Code/Version20160601101500.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Migrations/Code/Version20160601101500.php b/Migrations/Code/Version20160601101500.php index 8b3677c..b88f26e 100644 --- a/Migrations/Code/Version20160601101500.php +++ b/Migrations/Code/Version20160601101500.php @@ -39,7 +39,7 @@ function (array &$configuration) { $presetsConfiguration = $this->renameTranslationPackage($presetsConfiguration); - $configuration['TYPO3']['Form']['presets'] = $presetsConfiguration; + $configuration['Neos']['Form']['presets'] = $presetsConfiguration; }, true );