diff --git a/Build/phpstan/phpstan-baseline.neon b/Build/phpstan/phpstan-baseline.neon index 8cd7d4b4e26365624f55e0ce6f14cf88b199c88c..1589112582ee90660c9a3de2b543f42ec1f1ce85 100644 --- a/Build/phpstan/phpstan-baseline.neon +++ b/Build/phpstan/phpstan-baseline.neon @@ -5,11 +5,6 @@ parameters: count: 1 path: ../../typo3/sysext/adminpanel/Classes/Modules/PreviewModule.php - - - message: "#^Call to an undefined method TYPO3\\\\CMS\\\\Core\\\\Resource\\\\FolderInterface\\:\\:getCombinedIdentifier\\(\\)\\.$#" - count: 1 - path: ../../typo3/sysext/backend/Classes/Clipboard/Clipboard.php - - message: "#^Property TYPO3\\\\CMS\\\\Core\\\\Configuration\\\\TypoScript\\\\ConditionMatching\\\\AbstractConditionMatcher\\:\\:\\$pageId \\(int\\) on left side of \\?\\? is not nullable\\.$#" count: 1 diff --git a/typo3/sysext/backend/Classes/Clipboard/Clipboard.php b/typo3/sysext/backend/Classes/Clipboard/Clipboard.php index f8c93b9c69f2818ecfb263ebb8ecdc0b0f3b71a0..ad7c185973e16d8d4415353a6e542255d41c5667 100644 --- a/typo3/sysext/backend/Classes/Clipboard/Clipboard.php +++ b/typo3/sysext/backend/Classes/Clipboard/Clipboard.php @@ -323,16 +323,16 @@ class Clipboard 'height="' . htmlspecialchars((string)$processedFile->getProperty('height')) . '" ' . 'title="' . htmlspecialchars($processedFile->getName()) . '" alt="" />'; } + $linkItemText = GeneralUtility::fixed_lgd_cs($fileObject->getName(), (int)($this->getBackendUser()->uc['titleLen'] ?? 0)); + $combinedIdentifier = ($parentFolder = $fileObject->getParentFolder()) instanceof Folder ? $parentFolder->getCombinedIdentifier() : ''; + $filesRequested = $currentTable === '_FILE'; $records[] = [ 'identifier' => '_FILE|' . md5($value), 'icon' => '<span title="' . htmlspecialchars($fileObject->getName() . ' ' . $size) . '">' . $this->iconFactory->getIconForResource( $fileObject, Icon::SIZE_SMALL )->render() . '</span>', - 'title' => $this->linkItemText(htmlspecialchars(GeneralUtility::fixed_lgd_cs( - $fileObject->getName(), - $this->getBackendUser()->uc['titleLen'] - )), $fileObject->getParentFolder()->getCombinedIdentifier(), $currentTable === '_FILE'), + 'title' => $this->linkItemText(htmlspecialchars($linkItemText), $combinedIdentifier, $filesRequested), 'thumb' => $thumb, 'infoDataDispatch' => [ 'action' => 'TYPO3.InfoWindow.showItem',