Actions
Bug #20516
closedExternal Files are always indexed for the default language
Start date:
2009-05-27
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
External files (i.e. PDFs) are always indexed for the default language, therefore they will not show up when searching in an other language than default.
Typo3 4.2.6
I already fixed it for our installation:
typo3\sysext\indexed_search\class.indexer.php @ 1527
'freeIndexUid' => intval($this->conf['freeIndexUid']),
'freeIndexSetId' => intval($this->conf['freeIndexSetId']),
+ # fix by marcel.greter@crealogix.com
+ 'sys_language_uid' => intval($this->conf['sys_language_uid']),
);
$GLOBALS['TYPO3_DB']->exec_INSERTquery('index_phash', $fields);
HTH, Marcel Greter
(issue imported from #M11204)
Actions