git-svn-id: https://svn.typo3.org/TYPO3v4/Extensions/dbal/trunk@40706
735d13b6-9817-0410-8766-
e36946ffe9aa
2010-12-01 Xavier Perseguers <typo3@perseguers.ch>
+ * Fixed use of undefined variable $mapping in method map_subquery()
* Follow-up for bug #16392: Native tables could not be retrieved anymore
* Code cleanup
* Fixed bug #16492: groupBy and orderBy fail on exec_query (thanks to Oguzhan Alan)
$this->mapping[$mappingKey]['mapTableName'] =& $this->mapping[$v['table']]['mapTableName'];
}
}
- if ($mapping !== $v['table']) {
+ if ($mappingKey !== $v['table']) {
$this->mapping[$mappingKey]['mapFieldNames'] =& $this->mapping[$v['table']]['mapFieldNames'];
}
}