Bug #55707
closedMissing stdWrap for recursive in select query
100%
Description
typo3/sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
Line 7397 ++
public function getQuery($table, $conf, $returnQueryArray = FALSE) {
// Resolve stdWrap in these properties first
$properties = array(
'pidInList',
'uidInList',
'languageField',
'selectFields',
'max',
'begin',
'groupBy',
'orderBy',
'join',
'leftjoin',
'rightjoin',
'recursive' <-----THIS IS MISSING, ADDED AS EXAMPLE
);
recursive is not on the list...
which means
A: Change the manual here:
http://docs.typo3.org/typo3cms/TyposcriptReference/Functions/Select/Index.html
Property recursive Since TYPO3 4.6: integer /stdWrap
or
B: Please add recursive to the list...
Many thanks and best regards,
Matthias
Files