From: Lucas Werkmeister Date: Sat, 25 Feb 2017 12:38:03 +0000 (+0100) Subject: upd: stray old terminology X-Git-Url: https://code.wpia.club/?a=commitdiff_plain;h=68e4ff0512dc41937941ff1bef52cc08f01e4e94;p=gigi.git upd: stray old terminology Looks like I missed this in 08c94162. Change-Id: I8a4f73dd71c17dcf3e64d9f706487d6ad2986849 --- diff --git a/src/club/wpia/gigi/pages/wot/VerificationForm.java b/src/club/wpia/gigi/pages/wot/VerificationForm.java index 4d92f28a..6a785c0c 100644 --- a/src/club/wpia/gigi/pages/wot/VerificationForm.java +++ b/src/club/wpia/gigi/pages/wot/VerificationForm.java @@ -206,17 +206,17 @@ public class VerificationForm extends Form { throw gae; } - LinkedList toAssure = new LinkedList(); + LinkedList toVerify = new LinkedList(); for (int i = 0; i < selected.length; i++) { if (selected[i]) { - toAssure.add(applicantNames[i]); + toVerify.add(applicantNames[i]); } } - if (toAssure.size() == 0) { + if (toVerify.size() == 0) { throw new GigiApiException("You must confirm at least one name to verify an account."); } - Notary.verifyAll(agent, applicant, dob, pointsI, location, req.getParameter("date"), type, toAssure.toArray(new Name[toAssure.size()]), cs.getCountry()); + Notary.verifyAll(agent, applicant, dob, pointsI, location, req.getParameter("date"), type, toVerify.toArray(new Name[toVerify.size()]), cs.getCountry()); Outputable result = new TranslateCommand("Verification complete."); if (isWithPasswordReset()) { Language langApplicant = Language.getInstance(applicant.getPreferredLocale());