From 7bc990688cb8a2011e96eec951e01967940a5a57 Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Wed, 2 Dec 2015 11:24:20 +0200 Subject: [PATCH] Add missing parent constructor to Themes class --- system/src/Grav/Common/Themes.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system/src/Grav/Common/Themes.php b/system/src/Grav/Common/Themes.php index 4c5748be6..7c4c874ee 100644 --- a/system/src/Grav/Common/Themes.php +++ b/system/src/Grav/Common/Themes.php @@ -25,6 +25,8 @@ class Themes extends Iterator public function __construct(Grav $grav) { + parent::__construct(); + $this->grav = $grav; $this->config = $grav['config'];