2008-10-31 Oliver Hader <oliver@typo3.org>
* Fixed bug #9571: Additional condition required to check SSL status in class.t3lib_div.php (thanks to Christian Kuhn)
+ * Fixed bug #9659: TCEmain wrongly tests required input-type fields (thanks to Francois Suter)
2008-10-31 Benjamin Mack <benni@typo3.org>
$value = $GLOBALS['LANG']->csConvObj->conv_case($GLOBALS['LANG']->charSet, $value, 'toLower');
break;
case 'required':
- if (!$value) {$set=0;}
+ if (!isset($value) || $value === '') {
+ $set = false;
+ }
break;
case 'is_in':
$c=strlen($value);