From 72b8883dea011c265d6cde73b2c8d75eefec6840 Mon Sep 17 00:00:00 2001
From: Georg Ringer <georg.ringer@gmail.com>
Date: Thu, 22 Dec 2022 09:53:41 +0100
Subject: [PATCH] [BUGFIX] Remove unneeded quote

An unnecessary quote has been added with #91016 and should be removed
again.

Resolves: #99402
Releases: main, 11.5, 10.4
Change-Id: I42fdda31a1110efc540cc72fd0398db5bc03675f
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/77216
Tested-by: core-ci <typo3@b13.com>
Tested-by: Oliver Bartsch <bo@cedev.de>
Reviewed-by: Oliver Bartsch <bo@cedev.de>
---
 typo3/sysext/filelist/Classes/FileList.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/filelist/Classes/FileList.php b/typo3/sysext/filelist/Classes/FileList.php
index 5dbf5999ea18..9fb5895efbd5 100644
--- a/typo3/sysext/filelist/Classes/FileList.php
+++ b/typo3/sysext/filelist/Classes/FileList.php
@@ -1198,7 +1198,7 @@ class FileList
         ];
 
         return '
-            <button ' . GeneralUtility::implodeAttributes($attributes, true) . '">
+            <button ' . GeneralUtility::implodeAttributes($attributes, true) . '>
                 ' . $referenceCount . '
             </button>';
     }
-- 
GitLab