Bug #21035 ยป 11925.diff
t3lib/tceforms/class.t3lib_tceforms_suggest_defaultreceiver.php (Arbeitskopie) | ||
---|---|---|
// if there are less records than we need, call this function again to get more records
|
||
if (count($rows) < $this->maxItems &&
|
||
$allRowsCount >= 50 && $recursionCounter < $this->maxItems) {
|
||
$tmp = self::queryTable($this->params['value'], ++$recursionCounter);
|
||
$tmp = self::queryTable($params, ++$recursionCounter);
|
||
$rows = array_merge($tmp, $rows);
|
||
}
|
||
return $rows;
|