--- typo3_src-4.6.1/t3lib/class.t3lib_tceforms.php 2011-11-22 15:46:38.000000000 +0100 +++ ../typo3_src-4.6.1/t3lib/class.t3lib_tceforms.php 2012-01-19 18:36:15.000000000 +0100 @@ -1499,6 +1499,11 @@ $onlySelectedIconShown = 1; } + // Register as required if minitems is greater zero + if (($minItems = t3lib_utility_Math::forceIntegerInRange($config['minitems'], 0)) > 0) { + $this->registerRequiredProperty('field', $table . '_' . $row['uid'] . '_' . $field, $PA['itemFormElName']); + } + // Icon configuration: if ($config['suppress_icons'] == 'IF_VALUE_FALSE') { $suppressIcons = !$PA['itemFormElValue'] ? 1 : 0;