From 4f73fd62c9f3d485503d2c563b5b7302340dd35c Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Fri, 22 Jan 2016 12:49:19 +0200 Subject: [PATCH] Blueprint refactor: Fix missing dynamic properties --- system/src/Grav/Common/Data/Blueprints.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Data/Blueprints.php b/system/src/Grav/Common/Data/Blueprints.php index 4c144a37a..d7891c940 100644 --- a/system/src/Grav/Common/Data/Blueprints.php +++ b/system/src/Grav/Common/Data/Blueprints.php @@ -103,7 +103,7 @@ class Blueprints } } - $this->instances[$type] = $blueprint; + $this->instances[$type] = $blueprint->init(); } return $this->instances[$type];