Skip to content
Snippets Groups Projects
Commit 1381270d authored by Kevin Ditscheid's avatar Kevin Ditscheid
Browse files

[BUGFIX] Set maxitems to 9999 for image fields to prevend error message on localize

parent 5476e8f0
No related branches found
No related tags found
No related merge requests found
......@@ -7,7 +7,7 @@ $imageColumns = [
'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig(
'tx_sgnews_teaser1_image',
[
'maxitems' => 1,
'maxitems' => 9999,
'foreign_types' => [
'0' => [
'showitem' => '
......@@ -56,7 +56,7 @@ $imageColumns = [
'config' => \TYPO3\CMS\Core\Utility\ExtensionManagementUtility::getFileFieldTCAConfig(
'tx_sgnews_teaser2_image',
[
'maxitems' => 1,
'maxitems' => 9999,
'foreign_types' => [
'0' => [
'showitem' => '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment