Do not use deprecated $page->modular() method

This commit is contained in:
Matias Griese
2021-12-07 12:15:05 +02:00
parent 27364ea914
commit 143d401b3a
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -4,6 +4,9 @@
1. [Common](#common)
1. [](#improved)
- Improved PHP 8.1 compatibility
1. [Grav](#grav)
1. [](#improved)
- Do not use deprecated `$page->modular()` method
# 5.5.6
## 12/03/2021
@@ -224,7 +224,7 @@ class Menu extends AbstractMenu
*/
public function getItemsFromPlatformRecurse(PageInterface $page, $levels)
{
if (!$page->visible() || $page->modular()) {
if (!$page->visible() || $page->isModule()) {
return [];
}