Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions doc/release-notes/12244-fix-citations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This release fixes a bug causing Author names of Organizations to be incorrect in styled citations (the software attempted to interpret the organization's name as a first name/last name pair).
2 changes: 1 addition & 1 deletion src/main/java/edu/harvard/iq/dataverse/DataCitation.java
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ private void getAuthorsAndProducersFrom(DatasetVersion dsv) {
cslAuthors.add(new CSLNameBuilder().given(givenName).family(familyName).isInstitution(false).build());
} else {
cslAuthors.add(
new CSLNameBuilder().literal(formatString(authorJson.getString("fullName"), true)).isInstitution(false).build());
new CSLNameBuilder().literal(formatString(authorJson.getString("fullName"), true)).isInstitution(true).build());
}
}
}
Expand Down
Loading