Skip to content

Commit

Permalink
[BUGFIX] Fix broken select output in BackenUtility::getFuncMenu()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
helhum authored and ohader committed May 2, 2020
1 parent 897f59f commit 40f2402
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion typo3/sysext/backend/Classes/Utility/BackendUtility.php
Original file line number Diff line number Diff line change
Expand Up @@ -2632,7 +2632,7 @@ public static function getFuncMenu(
'data-navigate-value' => $scriptUrl . '&' . $elementName . '=${value}',
], true);
return sprintf(
'<select %s>%s</select>select>',
'<select %s>%s</select>',
$attributes,
implode('', $options)
);
Expand Down

0 comments on commit 40f2402

Please sign in to comment.