X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Fpages%2Fmain%2FRegisterPage.java;h=1d43a75a135ae0cf56ebf4a6d5a702fb6c29eb8b;hp=30c428333702991664e451aa3dc6b9b9452d32d7;hb=17a15662212d973d12ed4cea3f5eaa9c0d1169ed;hpb=0092e2ee67f47d5a5bc6f4af199bfaa1f986ec2d diff --git a/src/org/cacert/gigi/pages/main/RegisterPage.java b/src/org/cacert/gigi/pages/main/RegisterPage.java index 30c42833..1d43a75a 100644 --- a/src/org/cacert/gigi/pages/main/RegisterPage.java +++ b/src/org/cacert/gigi/pages/main/RegisterPage.java @@ -44,7 +44,7 @@ public class RegisterPage extends Page { public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException { Signup s = Form.getForm(req, Signup.class); try { - if (s.submit(resp.getWriter(), req)) { + if (s.submit(req)) { HttpSession hs = req.getSession(); hs.setAttribute(SIGNUP_PROCESS, null); resp.getWriter().println(translate(req, "Your information has been submitted" + " into our system. You will now be sent an email with a web link," + " you need to open that link in your web browser within 24 hours" + " or your information will be removed from our system!"));