Bug #17951
closedindexing configuration page tree allows to choose only up to three levels of recursion
0%
Description
Using an content element "indexing configuration" to tell the crawler to index a page tree is less useful as it could be as it is not possible to choose "infinity" or "999" as the number of levels of recursion. Currently, it is limited to 3. There is an easy fix, found at ttp://www.typo3forum.net/forum/indexed-search/16466-crawler-extension-kompletten-seitenbaum-crawlen.html
In /typo3/sysext/indexed_search/tca.php, add an additional line
Array('LLL:EXT:indexed_search/locallang_db.php:index_config.depth.I.999', '999'),
In /typo3/sysext/indexed_search/locallang_db.xml, add an additional line
<label index="index_config.depth.I.999">999 Levels</label>
or
<label index="index_config.depth.I.999">infinity</label>
(issue imported from #M7049)