From 431f53853652c8339b666a060bbd99be5ea5ecc4 Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Thu, 14 Jan 2016 12:59:48 +0200 Subject: [PATCH] Fix bug in Data:extra() --- system/src/Grav/Common/Data/Data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Data/Data.php b/system/src/Grav/Common/Data/Data.php index 0a0850765..fe70efb1b 100644 --- a/system/src/Grav/Common/Data/Data.php +++ b/system/src/Grav/Common/Data/Data.php @@ -211,7 +211,7 @@ class Data implements DataInterface, \ArrayAccess, \Countable, ExportInterface */ public function extra() { - return $this->blueprints ? $this->blueprints->extra($this->items) : array(); + return $this->blueprints()->extra($this->items); } /**