diff --git a/plugins/importexport/pubmed/filter/ArticlePubMedXmlFilter.inc.php b/plugins/importexport/pubmed/filter/ArticlePubMedXmlFilter.inc.php index d2d77e462af..29c0f98f947 100644 --- a/plugins/importexport/pubmed/filter/ArticlePubMedXmlFilter.inc.php +++ b/plugins/importexport/pubmed/filter/ArticlePubMedXmlFilter.inc.php @@ -199,10 +199,7 @@ function generateAuthorNode($doc, $journal, $issue, $submission, $author, $autho $authorElement->appendChild($doc->createElement('FirstName', ucfirst($author->getLocalizedGivenName()))); $authorElement->appendChild($doc->createElement('LastName', ucfirst($author->getLocalizedFamilyName()))); } - if ($authorIndex == 0) { - // See http://pkp.sfu.ca/bugzilla/show_bug.cgi?id=7774 - $authorElement->appendChild($doc->createElement('Affiliation', $author->getLocalizedAffiliation() . '. ' . $author->getEmail())); - } + $authorElement->appendChild($doc->createElement('Affiliation', $author->getLocalizedAffiliation() . '. ' . $author->getEmail())); return $authorElement; }