diff --git a/system/src/Grav/Common/Page/Page.php b/system/src/Grav/Common/Page/Page.php index 7979b46d4..aa99879e8 100644 --- a/system/src/Grav/Common/Page/Page.php +++ b/system/src/Grav/Common/Page/Page.php @@ -821,7 +821,9 @@ class Page { $blueprints = $this->blueprints(); $values = $blueprints->filter($this->toArray()); - $this->header($values['header']); + if ($values && isset($values['header'])) { + $this->header($values['header']); + } } /**