Index: typo3/class.db_list_extra.inc =================================================================== --- typo3/class.db_list_extra.inc (revision 4859) +++ typo3/class.db_list_extra.inc (working copy) @@ -503,8 +503,11 @@ // If render item, increment counter and call function if ($flag) { $cc++; - $iOut.= $this->renderListRow($table,$row,$cc,$titleCol,$thumbsCol); + if ($GLOBALS['BE_USER']->checkLanguageAccess($row[$TCA[$table]['ctrl']['languageField']]) || $row['sys_language_uid']==0 ) { + $iOut.= $this->renderListRow($table,$row,$cc,$titleCol,$thumbsCol); + } + // If localization view is enabled it means that the selected records are either default or All language and here we will not select translations which point to the main record: if ($this->localizationView && $l10nEnabled) {