From 40f2402faca20bb4fede636b04415f238ae78908 Mon Sep 17 00:00:00 2001
From: Helmut Hummel <typo3@helhum.io>
Date: Fri, 1 May 2020 22:31:19 +0200
Subject: [PATCH] [BUGFIX] Fix broken select output in
 BackenUtility::getFuncMenu()

Resolves: #91261
Releases: master
Change-Id: I8e7db92d914a8423b083c08c27c6922b1341f252
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/64387
Tested-by: TYPO3com <noreply@typo3.com>
Tested-by: Andreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: Oliver Hader <oliver.hader@typo3.org>
Reviewed-by: Guido Schmechel <guido.schmechel@brandung.de>
Reviewed-by: Andreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: Oliver Hader <oliver.hader@typo3.org>
---
 typo3/sysext/backend/Classes/Utility/BackendUtility.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/typo3/sysext/backend/Classes/Utility/BackendUtility.php b/typo3/sysext/backend/Classes/Utility/BackendUtility.php
index 76531fc47860..4eddb52c39ae 100644
--- a/typo3/sysext/backend/Classes/Utility/BackendUtility.php
+++ b/typo3/sysext/backend/Classes/Utility/BackendUtility.php
@@ -2632,7 +2632,7 @@ class BackendUtility
                 'data-navigate-value' => $scriptUrl . '&' . $elementName . '=${value}',
             ], true);
             return sprintf(
-                '<select %s>%s</select>select>',
+                '<select %s>%s</select>',
                 $attributes,
                 implode('', $options)
             );
-- 
GitLab