Skip to content

Commit

Permalink
Add Space in ePerson's Name for rejection metadata and email
Browse files Browse the repository at this point in the history
  • Loading branch information
misilot committed Apr 12, 2024
1 parent b3a832f commit ec3089d
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 ec3089d

Please sign in to comment.