Skip to content

Commit

Permalink
add MarkedIndividual.getDisplayName() to individual record comment ba…
Browse files Browse the repository at this point in the history
…se don user feedback
  • Loading branch information
holmbergius committed Jan 17, 2025
1 parent 57d089b commit 4248530
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -182,8 +182,9 @@ private String addHistories(Vector<MarkedIndividual> rIndividuals, int numSessio
}
String includeID = "";
if (request.getParameter("includeIndividualID") != null) {
includeID = " /* " + indie.getIndividualID() + " */";
includeID = " /* " +indie.getDisplayName()+" "+ indie.getIndividualID() + " */";
}
//this if drops individuals never sighted and only prints individuals with at least one capture
if (thisRecord.indexOf("1") != -1) {
histories.append(thisRecord + " 1;" + includeID + "\r\n");
}
Expand Down

0 comments on commit 4248530

Please sign in to comment.