Skip to content

Commit

Permalink
pkp/pkp-lib#10796 use orcidIsVerified instead of orcidAccessToken
Browse files Browse the repository at this point in the history
  • Loading branch information
kaitlinnewson committed Jan 21, 2025
1 parent 5451cf4 commit ab9bbcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion filter/ArticleCrossrefXmlFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public function createJournalArticleNode($doc, $submission)

if ($author->getData('orcid')) {
$orcidNode = $doc->createElementNS($deployment->getNamespace(), 'ORCID', $author->getData('orcid'));
$orcidAuthenticated = $author->getData('orcidAccessToken') ? 'true' : 'false';
$orcidAuthenticated = $author->getData('orcidIsVerified') ? 'true' : 'false';
$orcidNode->setAttribute('authenticated', $orcidAuthenticated);
$personNameNode->appendChild($orcidNode);
}
Expand Down

0 comments on commit ab9bbcf

Please sign in to comment.