diff --git a/typo3/sysext/filelist/Classes/FileList.php b/typo3/sysext/filelist/Classes/FileList.php index b0eed67cc5e4..ba3be6df4a5a 100644 --- a/typo3/sysext/filelist/Classes/FileList.php +++ b/typo3/sysext/filelist/Classes/FileList.php @@ -502,6 +502,8 @@ public function getTable($rowlist) $cells[] = '' . $this->iconFactory->getIcon('actions-document-select', Icon::SIZE_SMALL)->render() . ''; } $theData[$v] = implode('', $cells); + } elseif ($v === '_REF_') { + $theData[$v] = htmlspecialchars($this->getLanguageService()->getLL('c_' . $v)); } else { // Normal row: $theT = $this->linkWrapSort(htmlspecialchars($this->getLanguageService()->getLL('c_' . $v)), $this->folderObject->getCombinedIdentifier(), $v);