From 8cd361ca41fff8f3d76bf35cc53d1709b355586d Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Tue, 7 Oct 2014 12:31:42 +0300 Subject: [PATCH] Fix undefined variable in Data\Blueprint class --- system/src/Grav/Common/Data/Blueprint.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/system/src/Grav/Common/Data/Blueprint.php b/system/src/Grav/Common/Data/Blueprint.php index 4eb2f8061..3394dbf1c 100644 --- a/system/src/Grav/Common/Data/Blueprint.php +++ b/system/src/Grav/Common/Data/Blueprint.php @@ -14,6 +14,9 @@ class Blueprint use Export; public $name; + + public $initialized = false; + protected $items; protected $context; protected $fields;