--- typo3_src-4.5.22/t3lib/class.t3lib_tcemain_orig.php 2012-11-12 22:56:48.000000000 +0100 +++ typo3_src-4.5.22/t3lib/class.t3lib_tcemain.php 2012-11-29 17:22:47.000000000 +0100 @@ -6572,7 +6572,7 @@ * @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']); } /**