Skip to content

Commit

Permalink
BUGFIX: Fix code migration
Browse files Browse the repository at this point in the history
With the namespace change the code migration `TYPO3.Form-20160601101500` has not
been adjusted completely, see: dfa23c6#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
  • Loading branch information
bwaidelich committed Apr 13, 2017
1 parent 3c8468b commit dfc6762
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Migrations/Code/Version20160601101500.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ function (array &$configuration) {

$presetsConfiguration = $this->renameTranslationPackage($presetsConfiguration);

$configuration['TYPO3']['Form']['presets'] = $presetsConfiguration;
$configuration['Neos']['Form']['presets'] = $presetsConfiguration;
},
true
);
Expand Down

0 comments on commit dfc6762

Please sign in to comment.