Skip to content

Commit

Permalink
*8468* Correct accidental storage of article ID with issue
Browse files Browse the repository at this point in the history
  • Loading branch information
asmecher committed Nov 6, 2013
1 parent 656f3ca commit a302f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/importexport/native/NativeImportDom.inc.php
Original file line number Diff line number Diff line change
Expand Up @@ -661,7 +661,7 @@ function handleArticleNode(&$journal, &$articleNode, &$issue, &$section, &$artic
$errors[] = array('plugins.importexport.native.import.error.duplicatePublicArticleId', array('articleTitle' => $article->getLocalizedTitle(), 'otherArticleTitle' => $anotherArticle->getLocalizedTitle()));
$hasErrors = true;
} else {
$issue->setStoredPubId('publisher-id', $value);
$article->setStoredPubId('publisher-id', $value);
}
}

Expand Down

0 comments on commit a302f02

Please sign in to comment.