[TYPO3-core] RFC: Fix (part of) #7589: FULLTEXT keys are not processed correctly
Benjamin Mack
benni at typo3.org
Wed Mar 12 17:43:17 CET 2008
Hey Stucki,
I just found another bug that the patch introduced.
function getListOfTables() {
$whichTables = $GLOBALS['TYPO3_DB']->admin_get_tables(TYPO3_db);
- return $whichTables;
+ return array_keys($whichTables);
}
With this, the array is not associative but with numeric keys. the
"cleanup database" function in the installer then displays that there is
no tables cache_imagesizes.
What was the reason again for this change?
--
greetings,
benni.
-SDG-
More information about the TYPO3-team-core
mailing list