We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Typo3 11LTS with ssch/typo3-rector 1.1.1 and default rector.php
TCA field with fileFolder config in n custom table (tx_site_package_icon_box)
"iconSelector" => [ "label" => "Icon auswählen", "description" => "", "config" => [ "type" => "select", "items" => [["", ""]], "renderType" => "selectSingle", "fileFolder" => "EXT:site_package/Modules/GlobalTemplates/Assets/icons/selectable_icons_be/", "fileFolder_extList" => "svg", "fileFolder_recursions" => 0, "fieldWizard" => [ "selectIcons" => [ "disabled" => false, ], ], ], ],
is changed to:
"iconSelector" => [ "label" => "Icon auswählen", "description" => "", "config" => [ "type" => "select", "items" => [["", ""]], "renderType" => "selectSingle", "fieldWizard" => [ "selectIcons" => [ "disabled" => false, ], ], "fileFolderConfig" => [ "folder" => "EXT:site_package/Modules/GlobalTemplates/Assets/icons/selectable_icons_be/", "allowedExtensions" => "svg", "depth" => 0, ], "fileFolderConfig" => [ "folder" => "EXT:site_package/Modules/GlobalTemplates/Assets/icons/selectable_icons_be/", "allowedExtensions" => "svg", "depth" => 0, ], ], ],
fileFolderConfig is written twice into the field.
The text was updated successfully, but these errors were encountered:
TASK: Avoid dupliacate entry
93c71df
Resolves: #3243
[TASK]: Avoid duplicate entry (#4030)
e1a7156
* TASK: Avoid dupliacate entry Resolves: #3243 * [CI] Rector Rectify --------- Co-authored-by: GitHub Action <action@github.com>
Successfully merging a pull request may close this issue.
Typo3 11LTS with ssch/typo3-rector 1.1.1 and default rector.php
TCA field with fileFolder config in n custom table (tx_site_package_icon_box)
is changed to:
fileFolderConfig is written twice into the field.
The text was updated successfully, but these errors were encountered: