Skip to content

Commit

Permalink
#233 OrcidProfilePlugin
Browse files Browse the repository at this point in the history
  • Loading branch information
withanage committed Feb 16, 2023
1 parent 8dd80ed commit 696b3dd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions OrcidProfilePlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -1334,10 +1334,10 @@ public function buildOrcidWork($publication, $context, $authors, $request, $issu
$orcidWork = [
'title' => [
'title' => [
'value' => $publication->getLocalizedTitle($publicationLocale) ?? ''
'value' => trim(strip_tags($publication->getLocalizedTitle($publicationLocale))) ?? ''
],
'subtitle' => [
'value' => $publication->getLocalizedData('subtitle', $publicationLocale) ?? ''
'value' => trim(strip_tags($publication->getLocalizedData('subtitle', $publicationLocale))) ?? ''
]
],
'journal-title' => [
Expand Down

0 comments on commit 696b3dd

Please sign in to comment.