+2008-02-04 Michael Stucki <michael@typo3.org>
+
+ * Fixed bug #7295: sysext/dbal/: Uninitialized variable in ->handler_getFromTableList() (Patch by Oliver Klee)
+
2008-02-04 Oliver Hader <oh@inpublica.de>
* (feature) Added feature #5242: IRRE - Storage page for child records
2008-02-04 Oliver Hader <oh@inpublica.de>
* (feature) Added feature #5242: IRRE - Storage page for child records
+2008-02-04 Michael Stucki <michael@typo3.org>
+
+ * Fixed bug #7295: Uninitialized variable in ->handler_getFromTableList() (Patch by Oliver Klee)
+
2007-05-30 Karsten Dambekalns <karsten@typo3.org>
* Added default values and some usability improvements to cached info display in debug module (closes bug #3750)
2007-05-30 Karsten Dambekalns <karsten@typo3.org>
* Added default values and some usability improvements to cached info display in debug module (closes bug #3750)
$tableArray = $this->SQLparser->parseFromTables($_tableList);
// If success, traverse the tables:
$tableArray = $this->SQLparser->parseFromTables($_tableList);
// If success, traverse the tables:
- if (is_array($tableArray) && count($tableArray)) {
- foreach($tableArray as $vArray) {
+ if (is_array($tableArray) && count($tableArray)) {
+ $outputHandlerKey = '';
+ foreach($tableArray as $vArray) {
// Find handler key, select "_DEFAULT" if none is specifically configured:
$handlerKey = $this->table2handlerKeys[$vArray['table']] ? $this->table2handlerKeys[$vArray['table']] : '_DEFAULT';
// Find handler key, select "_DEFAULT" if none is specifically configured:
$handlerKey = $this->table2handlerKeys[$vArray['table']] ? $this->table2handlerKeys[$vArray['table']] : '_DEFAULT';