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: 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'];