diff --git a/typo3/sysext/filelist/Classes/FileList.php b/typo3/sysext/filelist/Classes/FileList.php index 8d5f80c3e8d1..91b9865e5698 100644 --- a/typo3/sysext/filelist/Classes/FileList.php +++ b/typo3/sysext/filelist/Classes/FileList.php @@ -500,12 +500,8 @@ public function getTable($rowlist) } } if ($this->clipObj->current !== 'normal' && $iOut) { - if ($this->folderObject->checkActionPermission('copy') && $this->folderObject->checkActionPermission('write') && $this->folderObject->checkActionPermission('move')) { - $cells[] = $this->linkClipboardHeaderIcon('' . $this->iconFactory->getIcon('actions-edit-copy', Icon::SIZE_SMALL)->render() . '', $table, 'setCB'); - } - if ($this->folderObject->checkActionPermission('delete')) { - $cells[] = $this->linkClipboardHeaderIcon('' . $this->iconFactory->getIcon('actions-edit-delete', Icon::SIZE_SMALL)->render(), $table, 'delete', $this->getLanguageService()->getLL('clip_deleteMarkedWarning')); - } + $cells[] = $this->linkClipboardHeaderIcon('' . $this->iconFactory->getIcon('actions-edit-copy', Icon::SIZE_SMALL)->render() . '', $table, 'setCB'); + $cells[] = $this->linkClipboardHeaderIcon('' . $this->iconFactory->getIcon('actions-edit-delete', Icon::SIZE_SMALL)->render(), $table, 'delete', $this->getLanguageService()->getLL('clip_deleteMarkedWarning')); $cells[] = '' . $this->iconFactory->getIcon('actions-document-select', Icon::SIZE_SMALL)->render() . ''; } $theData[$v] = implode('', $cells);