Index: typo3/sysext/dbal/class.ux_t3lib_db.php =================================================================== --- typo3/sysext/dbal/class.ux_t3lib_db.php (revision 9381) +++ typo3/sysext/dbal/class.ux_t3lib_db.php (revision ) @@ -2617,7 +2617,7 @@ $tables_result = mysql_query('SHOW TABLE STATUS FROM `' . TYPO3_db . '`', $this->handlerInstance['_DEFAULT']['link']); if (!$this->sql_error()) { while ($theTable = $this->sql_fetch_assoc($tables_result)) { - $whichTables[current($theTable)] = current($theTable); + $whichTables[$theTable['Name']] = $theTable; } } break;