Bug #15429 ยป 2286.patch
typo3_src-4.0/t3lib/class.t3lib_transferdata.php 2006-06-19 16:43:10.442264151 +0200 | ||
---|---|---|
$data = $row[$field];
|
||
} else {
|
||
$data = $fieldConfig['config']['default'];
|
||
if ($field == 'CType' && $TSconfig['CType']['removeItems'] != '') {
|
||
foreach($fieldConfig['config']['items'] as $type) {
|
||
if (!t3lib_div::inList($TSconfig['CType']['removeItems'], $type[1])) {
|
||
$data = $type[1];
|
||
break;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
$data = $this->renderRecord_SW($data,$fieldConfig,$TSconfig,$table,$row,$field);
|