Project

General

Profile

Bug #20400 » 11047_v2.diff

Administrator Admin, 2009-05-07 17:44

View differences:

typo3/sysext/dbal/class.ux_t3lib_db.php (working copy)
* @return string Returns the type of the specified field index
*/
function sql_field_metatype($table,$field) {
// If $table and/or $field are mapped, use the original names instead
foreach ($this->mapping as $tN => $tMapInfo) {
if (isset($tMapInfo['mapTableName']) && $tMapInfo['mapTableName'] === $table) {
// Table name is mapped => use original name
$table = $tN;
}
if (isset($tMapInfo['mapFieldNames'])) {
foreach ($tMapInfo['mapFieldNames'] as $fN => $fMapInfo) {
if ($fMapInfo === $field) {
// Field name is mapped => use original name
$field = $fN;
}
}
}
}
return $this->cache_fieldType[$table][$field]['metaType'];
}
(2-2/3)