Skip to content
Snippets Groups Projects
Commit c6a58be9 authored by Wouter Wolters's avatar Wouter Wolters Committed by Georg Ringer
Browse files

[BUGFIX] Using ext:sys_action gives a warning about not valid HTML

When ext:sys_action is installed it will give a warning about
not valid HTML. This is because the id="" and class="" are glued
to each other. Fix this by moving the space from the front to the
back.

Change-Id: Ia916a9e084cb9f3595164215cf22a100d64dc7a9
Resolves: #52202
Releases: 6.2
Reviewed-on: https://review.typo3.org/24001
Reviewed-by: Georg Ringer
Tested-by: Georg Ringer
parent 04dcfbc7
No related merge requests found
......@@ -132,7 +132,7 @@ class ActionToolbarMenu implements \TYPO3\CMS\Backend\Toolbar\ToolbarItemHookInt
* @return string List item HTML attibutes
*/
public function getAdditionalAttributes() {
return ' id="tx-sys-action-menu"';
return 'id="tx-sys-action-menu" ';
}
/**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment