Skip to content

Commit c9602a5

Browse files
committed
Support PHP 8
1 parent d2b5f71 commit c9602a5

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Block/Menu.php

+4-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,10 @@ public function __construct(
8787

8888
$this->_helper = $helper;
8989
$this->_magicmenuCollectionFactory = $magicmenuCollectionFactory;
90-
$this->_sysCfg= (object) $this->_helper->getConfigModule();
90+
$configModule = $this->_helper->getConfigModule();
91+
if( is_null($configModule['topmenu']['notIncludeNav']) ) $configModule['topmenu']['notIncludeNav'] = '';
92+
if( is_null($configModule['vmenu']['notIncludeNav']) ) $configModule['vmenu']['notIncludeNav'] = '';
93+
$this->_sysCfg= (object) $configModule;
9194

9295
$this->serializer = $serializer ?: \Magento\Framework\App\ObjectManager::getInstance()
9396
->get(\Magento\Framework\Serialize\Serializer\Json::class);

0 commit comments

Comments
 (0)