Skip to content
Snippets Groups Projects
Commit 0120781b authored by Georg Ringer's avatar Georg Ringer Committed by Stefan Bürk
Browse files

[BUGFIX] Fix notice for browse menu with no parent page

Fix a notice if a browse menu is being generated but no parent page
is available.

Resolves: #97608
Releases: main, 11.5
Change-Id: Id0674fddccf62e02febdfa7b609521d0db3114b1
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/74603


Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarSimon Schaufelberger <simonschaufi+typo3@gmail.com>
Tested-by: default avatarNikita Hovratov <nikita.h@live.de>
Tested-by: default avatarStefan Bürk <stefan@buerk.tech>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarcrell <larry@garfieldtech.com>
Reviewed-by: default avatarSimon Schaufelberger <simonschaufi+typo3@gmail.com>
Reviewed-by: default avatarTorben Hansen <derhansen@gmail.com>
Reviewed-by: default avatarNikita Hovratov <nikita.h@live.de>
Reviewed-by: default avatarStefan Bürk <stefan@buerk.tech>
parent 8758114d
Branches
Tags
No related merge requests found
......@@ -992,7 +992,7 @@ abstract class AbstractMenuContentObject
$recArr['up'] = $this->sys_page->getPage($value_rec['pid']);
}
// If the 'up' item was NOT level 0 in rootline...
if ($recArr['up']['pid'] && $value_rec['pid'] != $this->tmpl->rootLine[0]['uid']) {
if (($recArr['up']['pid'] ?? 0) && $value_rec['pid'] != $this->tmpl->rootLine[0]['uid']) {
// The page record of "index".
$recArr['index'] = $this->sys_page->getPage($recArr['up']['pid']);
}
......
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