From 991652dc94dbaf807ca7fdc554cb5ce3aec21202 Mon Sep 17 00:00:00 2001 From: Joeli Takala Date: Wed, 12 Dec 2018 14:59:23 +0200 Subject: [PATCH 1/2] mark the start of 2.2 development From 499e38aeb8f3c74c1746de8ca060056301795785 Mon Sep 17 00:00:00 2001 From: Joeli Takala Date: Thu, 24 Jan 2019 16:31:46 +0200 Subject: [PATCH 2/2] Fixed function calls for getLiteral with property and lang --- model/VocabularyConfig.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/model/VocabularyConfig.php b/model/VocabularyConfig.php index bf5ecd958..72893299e 100644 --- a/model/VocabularyConfig.php +++ b/model/VocabularyConfig.php @@ -82,7 +82,7 @@ public function getFeedbackRecipient() */ public function getTitle($lang = null) { - return $this->getLiteral('dc:title', $lang); + return $this->getLiteral('dc:title', false, $lang); } /** @@ -269,7 +269,7 @@ public function getShowLangCodes() */ public function getMarcSourceCode($lang = null) { - return $this->getLiteral('skosmos:marcSourceCode', $lang); + return $this->getLiteral('skosmos:marcSourceCode', false, $lang); } /**