Skip to content

Commit

Permalink
Fix methods calls following pull request about concept property mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
kinow authored and osma committed Mar 8, 2019
1 parent 48711f7 commit 6502986
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion model/ConceptMappingPropertyValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down

0 comments on commit 6502986

Please sign in to comment.