From b86aa6d473ece705b896ecfd5c9ce6cdc3db23bd Mon Sep 17 00:00:00 2001 From: Tamas Csizmadia Date: Tue, 1 Dec 2015 21:57:31 +0100 Subject: [PATCH 1/2] Updated Hungarian translation with new string. --- system/languages/hu.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/system/languages/hu.yaml b/system/languages/hu.yaml index 71c0ee91e..e807896eb 100644 --- a/system/languages/hu.yaml +++ b/system/languages/hu.yaml @@ -50,3 +50,4 @@ NICETIME: FORM: VALIDATION_FAIL: A validáció hibát talált: INVALID_INPUT: Az itt megadott érték érvénytelen: + MISSING_REQUIRED_FIELD: Ez a kötelező mező nincs kitöltve: From 7bc990688cb8a2011e96eec951e01967940a5a57 Mon Sep 17 00:00:00 2001 From: Matias Griese Date: Wed, 2 Dec 2015 11:24:20 +0200 Subject: [PATCH 2/2] 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'];