From 65029864d012d05d623264afa055fa853209cbe6 Mon Sep 17 00:00:00 2001 From: "Bruno P. Kinoshita" Date: Thu, 27 Dec 2018 11:30:33 +1300 Subject: [PATCH] Fix methods calls following pull request about concept property mappings --- model/ConceptMappingPropertyValue.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/model/ConceptMappingPropertyValue.php b/model/ConceptMappingPropertyValue.php index 133dbb477..58051c835 100644 --- a/model/ConceptMappingPropertyValue.php +++ b/model/ConceptMappingPropertyValue.php @@ -210,7 +210,7 @@ public function asJskos($queryExVocabs = true) $ret['to']['memberSet'][0]['notation'] = (string) $notation; } - $label = $this->getLabel($queryExVocabs); + $label = $this->getLabel(null, $queryExVocabs); if (isset($label)) { if (is_string($label)) { list($labelLang, $labelValue) = ['-', $label];