Bug #24057 » 16392-dbal.patch
typo3/sysext/dbal/class.ux_t3lib_db.php (revision ) | ||
---|---|---|
$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;
|