Skip to content

Commit

Permalink
pkp/pkp-lib#10086 correct invalid nocontributor tag in onix export pl…
Browse files Browse the repository at this point in the history
…ugin
  • Loading branch information
kaitlinnewson committed Jul 17, 2024
1 parent 3cba7d2 commit 0820f12
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ function createProductNode($doc, $submission, $publicationFormat) {
}

if (sizeof($authors) == 0) { // this will probably never happen, but include the possibility.
$descDetailNode->appendChild($this->_buildTextNode($doc, 'NoContributor', '')); // empty state of fact.
$descDetailNode->appendChild($doc->createElementNS($deployment->getNamespace(), 'NoContributor')); // empty state of fact.
}

/* --- Add Language elements --- */
Expand Down

0 comments on commit 0820f12

Please sign in to comment.