Skip to content

Commit

Permalink
Merge pull request DSpace#9473 from misilot/patch-3
Browse files Browse the repository at this point in the history
Add Space in ePerson's Name in Rejection Emails and Metadata
  • Loading branch information
tdonohue authored Apr 12, 2024
2 parents b3a832f + ec3089d commit 009642d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1177,7 +1177,7 @@ protected WorkspaceItem returnToWorkspace(Context c, XmlWorkflowItem wfi)
public String getEPersonName(EPerson ePerson) {
String submitter = ePerson.getFullName();

submitter = submitter + "(" + ePerson.getEmail() + ")";
submitter = submitter + " (" + ePerson.getEmail() + ")";

return submitter;
}
Expand Down

0 comments on commit 009642d

Please sign in to comment.