+2009-01-30 Benjamin Mack <benni@typo3.org>
+
+ * Followup to #10094: Use foreach instead of while-list-each constructs in t3lib_TCEmain
+
2009-01-30 Francois Suter <francois@typo3.org>
* Fixed bug #10304: Links in the warning box are not visible as links (thanks to Georg Ringer)
t3lib_div::loadTCA($table);
$curData=$this->recordInfo($table,$uid,'*');
$newData=array();
- foreach ($GLOBALS['TCA']['columns'] as $field => $conf) {
+ foreach ($GLOBALS['TCA'][$table]['columns'] as $field => $conf) {
if ($conf['config']['type']=='input') {
$evalCodesArray = t3lib_div::trimExplode(',',$conf['config']['eval'],1);
if (in_array('uniqueInPid',$evalCodesArray)) {