X-Git-Url: https://code.wpia.club/?p=gigi.git;a=blobdiff_plain;f=src%2Forg%2Fcacert%2Fgigi%2Fpages%2Faccount%2FChangePasswordPage.java;h=c17f2d8d652354d28c60b1580565e659d16c220d;hp=805c72d923958c0297e28134640d4d5dd1942482;hb=1d24b8e1fe36651f22339ddbb7b1a3b34b48c081;hpb=79233cf54bb1cb2193c4b37abdbb8e07fadfec88 diff --git a/src/org/cacert/gigi/pages/account/ChangePasswordPage.java b/src/org/cacert/gigi/pages/account/ChangePasswordPage.java index 805c72d9..c17f2d8d 100644 --- a/src/org/cacert/gigi/pages/account/ChangePasswordPage.java +++ b/src/org/cacert/gigi/pages/account/ChangePasswordPage.java @@ -7,7 +7,6 @@ import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; import org.cacert.gigi.output.Form; -import org.cacert.gigi.pages.LoginPage; import org.cacert.gigi.pages.Page; public class ChangePasswordPage extends Page { @@ -20,7 +19,7 @@ public class ChangePasswordPage extends Page { @Override public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException { - new ChangeForm(req, LoginPage.getUser(req)).output(resp.getWriter(), getLanguage(req), new HashMap()); + new ChangeForm(req, getUser(req)).output(resp.getWriter(), getLanguage(req), new HashMap()); } @Override