Project

General

Profile

Bug #83538

Updated by Sven Burkert over 6 years ago

When searching in list module for a nowhere existing word, e.g. "somenotexistingwordfoobar", I get results nevertheless: All "website language" (sys_language) records are anyways displayed. If some extensions are installed, the records of these extensions are also returned. Have a look at attached image. 

 When adding "searchFields" with at least one field to TCA, all is ok. Example for the website language records: 

 <pre> 
 $GLOBALS['TCA']['sys_language']['ctrl']['searchFields'] = 'title'; 
 </pre> 

 But sometimes you don't want to define searchFields.

Back