Skip to content
Snippets Groups Projects
Commit c96bfd40 authored by Frank Nägler's avatar Frank Nägler Committed by Christian Kuhn
Browse files

[BUGFIX] Page module: Add H1 element for rootpage

Resolves: #63201
Releases: master
Change-Id: I78c942bfb7222637594fc4b93e12bba96b4d787f
Reviewed-on: http://review.typo3.org/34479


Reviewed-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Tested-by: default avatarAndreas Fernandez <a.fernandez@scripting-base.de>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent b3b3db7c
Branches
Tags
No related merge requests found
......@@ -607,8 +607,10 @@ class PageLayoutController {
$this->doc->JScode = $this->doc->wrapScriptTags('
if (top.fsMod) top.fsMod.recentIds["web"] = ' . (int)$this->id . ';
');
$body = $this->doc->header($GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename']);
$flashMessage = GeneralUtility::makeInstance(\TYPO3\CMS\Core\Messaging\FlashMessage::class, $GLOBALS['LANG']->getLL('clickAPage_content'), $GLOBALS['LANG']->getLL('clickAPage_header'), FlashMessage::INFO);
$body = $flashMessage->render();
$body .= $flashMessage->render();
// Setting up the buttons and markers for docheader
$docHeaderButtons = array(
'view' => '',
......
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