Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -798,6 +798,8 @@ public int compare(SubmissionListColumn svc1, SubmissionListColumn svc2) {

if (filterString == null) {
sqlBuilder.append("a.email IS NULL");
} else if (filterString.equalsIgnoreCase("null")) {
sqlBuilder.append("a.email IS NULL");
Comment on lines 799 to +802
} else if (submissionListColumn.getExactMatch()) {
sqlBuilder.append("a.email = '").append(filterString).append("'");
} else {
Comment on lines 803 to 805
Expand Down
Loading