Bug #38703 ยป patch_20121129_1.diff
typo3_src-4.5.22/t3lib/class.t3lib_tcemain.php 2012-11-29 17:22:47.000000000 +0100 | ||
---|---|---|
* @return boolean True if DB reference field (group/db or select with foreign-table)
|
||
*/
|
||
function isReferenceField($conf) {
|
||
return ($conf['type'] == 'group' && $conf['internal_type'] == 'db' || $conf['type'] == 'select' && $conf['foreign_table']);
|
||
return ($conf['type'] == 'group' && $conf['internal_type'] == 'db') || (($conf['type'] == 'select' || $conf['type'] == 'inline') && $conf['foreign_table']);
|
||
}
|
||
/**
|